Peter Alfors wrote:
> Currently, we do not use the <html:form> tag.
> I haven't had a chance to look into them yet.
>
> I would think that the action attribute would not be required, but maybe there
> is a good reason for it to be?
> Someone with more experience with the <html> tags will have to help you there.
> Anyone?
>
The action attribute is used for two things:
* Create the destination hyperlink to submit to (which
you don't need in this scenario)
* To look up the corresponding ActionMapping entry
and, from there, determine what form bean to use.
This information is used by all the nested field tags.
If you don't need either of these features, you probably don't need the
<html:form> tag.
> Pete
>
Craig