I have a secure session admin area working on my website.
Within this I have pages that allow the user to add new recordes into my database via a forms.
These forms have validation attached to them where by they check the input follows the correct format. If not the user is informed what is wrong and an option to go back ito try again.
This try again button use javascript to open the last page viewed so as to keep the values that were entered into the form previously (As opposed to having to enter every value again).
This worked perfectly without sessions but when a session script was added to the page and the user clicks the back button a fresh version of the original page appears (Without the entered values). This is really annoying.
Is there anyway to overcome this??
Thanks.