Click here to Skip to main content
15,917,473 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How can I stop Internet Explorer to stop asking :

"To display the webpage again, Internet Explorer needs to resend the information you've previously submitted.
If you were making a purchase, you should click Cancel to avoid a duplicate transaction.
Otherwise, click retry to display the webpage again."
Posted
Updated 23-Sep-12 23:30pm
v3

Check this..
Internet Explorer needs to resend the information.[^]

You need to add return false at the end of javascript
 
Share this answer
 
That is because a previous operation that the browser made was a POST, and you have caused an event to occurr that would result in the POST being submitted to the server again.

A common way to avoid this is to use the Post/Redirect/Get[^] pattern - it really depends what you are doing to cause this though,


Are you sending some sort of update, then doing a refresh?
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900