Re: empty form after errors

2002-11-07 Thread Marcus Biel
It could also be that the form in your jsp has the standard: value= marcus [EMAIL PROTECTED] schrieb: When a submit my form with errors, the jsp is returned back with errors displayed as i expect. But all fields are empty. is it because I define my form like this html:form

RE: empty form after errors

2002-11-07 Thread Sri Sankaran
Make sure that the scope of the form-bean (as defined in the action mapping) is 'session'. Sri -Original Message- From: [EMAIL PROTECTED] [mailto:meissa.Sakho;bpam.fr] Sent: Thursday, November 07, 2002 5:52 AM To: [EMAIL PROTECTED] Subject: empty form after errors When a submit my

Re: empty form after errors

2002-11-07 Thread Eric Weidner
In 1.1b2, I have found that if you have to forward from an Action class following a JSP to an Action class that precedes the JSP ( like a setup Action ) and both Actions are set to scope=session, then the first Action creates a new form and wipes out the one in the session. I worked around