tags:

views:

278

answers:

2

Hi

I am trying to send user to previous page history.go(-1). This works fine in Firefox but fails in IE ERROR: 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.

Anyone came across this issue. Please help !

+1  A: 

This generally means that on the previous page there was some sort of POST, to fix this remove the POST on the previous page by using session variables or another method to wait to submit the data until all forms are completed.

If this does not sufficiently answer your question, please provide more detail (e.g. using PHP, submitting data on the previous page) and/or code examples.

Mark
A: 

Use Firebug to see what headers are being set in response to the form post. I bet it's the cache-control header that is the culprit.

Reference

Josh Stodola