data disappearing in jsp

2003-10-06 Thread krishnamohan
Hi, In my jsp page I have 5 fields out of which 2 fields are required. When the jsp is submitted I am displaying the error messages for the required fields using Action Error in the form bean's validate method. When the jsp page is displayed with the error messages, the data for the remaining

Re: data disappearing in jsp

2003-10-06 Thread Susan Bradeen
On 10/06/2003 09:10:28 AM krishnamohan wrote: Hi, In my jsp page I have 5 fields out of which 2 fields are required. When the jsp is submitted I am displaying the error messages for the required fields using Action Error in the form bean's validate method. When the jsp page is displayed

Re: data disappearing in jsp

2003-10-06 Thread Max Cooper
PROTECTED] Sent: Monday, October 06, 2003 6:10 AM Subject: data disappearing in jsp Hi, In my jsp page I have 5 fields out of which 2 fields are required. When the jsp is submitted I am displaying the error messages for the required fields using Action Error in the form bean's validate method

RE: data disappearing in jsp

2003-10-06 Thread krishnamohan
Subject: Re: data disappearing in jsp If the missing fields are display-only, you might need to add hidden fields to carry their values along in the request when the page is submitted so that they will be available on a validation error. reset() is called before the ActionForm is populated