Re: Two forms on one page - html:errors/

2003-08-14 Thread Michael Ruppin
In your Form/Action you specify a property for ActionErrors: String property=FormOne; ActionErrors errors = ...; ActionError error = ...; errors.add(property, error); In your jsp you use the Struts html:messages tag with the property attribute: html:messages property=FormOne id=msg ...

Two forms on one page - html:errors/

2003-08-14 Thread David Thielen
Hi; I have two forms on one page. In this case, how do I handle html:errors/ for each form? I want to put the errors from each form above that form. thanks - dave