This content has been marked as final.
Show 7 replies
-
1. Re: Form data has expired
Dinghus Jan 18, 2007 11:58 AM (in response to Ghis)Are you using a "back" function or a "goto" function? If you are going "back" then you will need to catch the error and rewrite the page. Otherwise just prepopulate the form with stored data. -
2. Re: Form data has expired
puregas Jan 18, 2007 11:55 PM (in response to Ghis)I use the following code;
<!--- DO NOT CACHE THE PAGE --->
<cfoutput>
<cfheader name="expires" value="#now()#">
<cfheader name="pragma" value="no-cache">
<cfheader name="cache-control" value="no-cache, no-store, must-revalidate">
</cfoutput>
I place it just below my <body> tag. - It seem to work pretty well -
3. Re: Form data has expired
Dinghus Jan 19, 2007 11:53 AM (in response to Ghis)So you tell it not to store the page and then want it to store the page? -
4. Re: Form data has expired
cesarmejia Feb 4, 2007 12:52 PM (in response to Ghis)What I did was: I put @ cfform the property timeout="10000" and that's it, no more timeout problems at all. -
5. Re: Form data has expired
MeltdownMX Mar 10, 2007 12:26 PM (in response to Ghis)CoffeeCup: You are awesome. What a PAIN this was to try and figure out! Thanks that worked great for me. -
6. Re: Form data has expired
s6868 May 11, 2012 7:50 AM (in response to cesarmejia)I have done so, but after the time limit, it gives you the same message again or an empty page if you start a new browser days later. Are you sure you have no problem even after the time limit? Thanks.
-
7. Re: Form data has expired
s6868 May 11, 2012 6:43 AM (in response to Ghis)Any one knows if we can catch the exception and reload the page? Thanks.
