Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
Ghis #1
Form data has expired
I have a Grid using onChange as below:
onchange="getUrl('SpecificAccount.cfm?count_id=' +
getTodaysGrid.dataProvider[getTodaysGrid.selectedIndex]['count_id']);"
Once the item is selected, the SpecificAccount.cfm page is opening properly.
So far it's working great. Now if I am going back to the previous page using a
cfinput type='submit'. The page keeps saying: 'The form data has expired,
Please reload this page in your browser.'
How to have to page reloaded properly?
main.cfm
<cfform name="form1" method="post" format="flash">
<cfformgroup type="panel" label="Today's Call Backs
(#getTodays.recordCount#)">
<cfgrid name="getTodaysGrid"
query="getTodays"
onchange="getUrl('SpecificAccount.cfm?count_id=' +
getTodaysGrid.dataProvider[getTodaysGrid.selectedIndex]['count_id']);">
SpecificAccount.cfm:
<cfform format="flash" action="act_specificAccount.cfm" >
<cfgrid name="grid1" query="getDetails" />
<cfform>
act_specificAccount.cfm:
<cflocation url="main.cfm">
Ghis Guest
-
Flash Form data had expired
When the back button it clicked the form on the previous page has expired. What?s a good way around this? -
form data expired
Is there an ultimate way to get rid of this error message when using flash cffrom? The form data has expired, Please reload this page in your... -
'Form data has expired'
Hey all, I seem to be having a problem with my flash form. I made a form which takes values from a GET then querys a database to populate the... -
mx 7 flash form The form data has expired, Please reloadthis page in your browser.
When i first go to any flash form on my CFMX 7 server i get the following message. The form data has expired, Please reload this page in your... -
System.Data.SqlClient "Timeout expired" causing ASP.net web application to automatically restart.
I have a Web Server running IIS 5 or 6 on Windows 2K and Windows 2003 Server that is experiencing strange shutdown problems. We are using ASP.NET... -
Dinghus #2
Re: Form data has expired
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.
Dinghus Guest
-
CoffeeCup #3
Re: Form data has expired
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
CoffeeCup Guest
-
Dinghus #4
Re: Form data has expired
So you tell it not to store the page and then want it to store the page?
Dinghus Guest
-
cesarmejia #5
Re: Form data has expired
What I did was: I put @ cfform the property timeout="10000" and that's it, no more timeout problems at all.
cesarmejia Guest
-
MeltdownMX #6
Re: Form data has expired
CoffeeCup: You are awesome. What a PAIN this was to try and figure out! Thanks that worked great for me.
MeltdownMX Guest



Reply With Quote

