I have a simple cgi form that has a missing field page in case my visitors forget to fill in essential fields. On the missing field page, I am using
<A href="#" onClick="history.go(-1)">go back</A>
I have also tried
<A href="#" onClick="window.history.go(-1)">go back</A>
so they can go back to what they have already filled and add what's missing. Works fine in IE.
2 problems with netscape 6:
1. I have to click on my "back" link at least 3 times before it works
2. when it finally works, the form has been reset and all information I had put in is gone.
This is a lengthy form and that kind of stuff will discourage my visitors.
Thanks!
<A href="#" onClick="history.go(-1)">go back</A>
I have also tried
<A href="#" onClick="window.history.go(-1)">go back</A>
so they can go back to what they have already filled and add what's missing. Works fine in IE.
2 problems with netscape 6:
1. I have to click on my "back" link at least 3 times before it works
2. when it finally works, the form has been reset and all information I had put in is gone.
This is a lengthy form and that kind of stuff will discourage my visitors.
Thanks!