Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

need to fix this

New Here ,
May 19, 2009 May 19, 2009

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:

About Working Offline

Warning:  Page has Expired
The  page you requested was created using information you submitted in a form. This  page is no longer available. As a security precaution, Internet Explorer does  not automatically resubmit your information for you.

To resubmit your  information and view this Web page, click the Refresh button.

TOPICS
Getting started
808
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 19, 2009 May 19, 2009

There is no fix because nothing is broken.  That's how web pages containing form submissions work.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
May 20, 2009 May 20, 2009
LATEST

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;">

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources