Hi Friends
I have employed datevalidator & requiredfiledvalidator on a page of mine to capture unacceptable user values. The following is one of the fields in my JSP
<tr>
<td><dmf:label nlsid = 'MSG_EXPT_DEL_DATE'/>
<td><dmf:dateinput name ='deliverdate_input' dateselector ='calendar'/></td><td>
<dmf:requiredfieldvalidator name="EXPDEL_VALIDATION" controltovalidate="deliverdate_input" nlsid='MSG_VALID_END_DATE'/>
</td><td>
<dmf:datevalidator name="deliverdate_input_validate" controltovalidate="deliverdate_input" errormessage="Bad date entered."/>
</td>
</tr>
As a result i have the following screen snippet in front of me:

Now this is an acceptable and expected occurance when i have entered illegal values and clicked on a link on this page say page B to proceed. But as soon as i navigate out of this page through a link on this page B and come back on this page B from the previous calling page A by clicking on a link on the page A, i still see the red warnings of the validators even before I have entered any values.
The method responsible for coming onto page B from page A is as follows:
public void createFreewayProject(Control control, ArgumentList args){ setComponentPage("createProject"); }
Could you please help me rectify this so that the page loads without the validation statements.
Thanks & Regards
Vishnu