When can I get an expired page error in IE? (Doesn't it seem to be added to FF?)
and
I am trying to avoid page expiration in the following scenario:
page1: use post and output page2.
page2: use the message, but with enctype = multipart and output page3
page3: use post and output page4.
page4: no form.
When I navigate through each page, I can use the back button on each page, except on page 4. It seems that it is impossible to return to the page after the page with the form with enctype = multipart? In this scenario, I always lose the page on page 3. Can someone explain why this is and how to allow the user to use the back button on each page no matter which method (POST / GET) is used (if possible )?
I know that you could solve this problem by implementing the PRG template , but this is not quite an option.
Note that a page with enctype = multipart must have an input of type = file in order to trigger this behavior. If I delete all the input files, I can use the reverse and direct without any problems.
Thanks!
source share