Copy link to clipboard
Copied
Hi i had a page in coldfusion and when i try to go back by using back button in browser then i am gettting page expired and i dont need to be happen.Can any one have any idea regarding this type of issue.
this is error:
Copy link to clipboard
Copied
There is no fix because nothing is broken. That's how web pages containing form submissions work.
Copy link to clipboard
Copied
Hi,
in your form you can set a timeout attribute. I know this works great with flash forms. The timeout here is in second, you can change it to whatever..
<cfform format="flash" timeout="1000">
If in a HTML form you can add a button to use instead of the "back button" like this...
<INPUT TYPE="button" VALUE="Go Back" onClick="history.go(-1);return true;">