Using two <html:form> tags in the same jsp page leads to an error when the web container reuses the FormTag object. (The reuse of tag objects is complient to (or even an essentail part of) the JSP specification.)
The problem is in the lookup method: The information (e.g. the variable 'name') is looked up only once, which leads to an error when the FormTag object is used for different forms in one page: The value that was looked up belongs to another <html:form> tag. Dirk Reichelt -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
