Web form fields empty after history back

Hello,

problem in the following situtation:

  1. we have a notes web form opened in a browser

  2. when the form is submitted we call a webquerysave agent

  3. the agent validates the form and if the validation is not successfull it prints an error message with an history back button to return to the FILLED form

BUT in some cases the fields of the form are all empty when returning from the validation :-(((

I thought this error only appears on internet explorer but not at everytime

can everyone help please

(we cannot use java script validation)

Subject: Web form fields empty after history back

If at all possible, your validation should be on the front end.

You may resolve the issue for now, by changing the IE options to Check for Newer Pages to “automatic” or none… this may help.

Subject: Web form fields empty after history back

Hi…Put in your web form an computed field with this: “@SetHTTPHeader(“Expires”; 0)”.

This statment say to the web browser to not expire the page content, so when you hit the back button (or history.go(-1) - javascript) the fields of form will not back empty.

HTH.

Tulio