I have an asp.net application and when I refresh a web page which is produced after a form is submitted.
Example:
<form name="myform" action="mypage.aspx" method="post">
then the following alert is shown.
"The page cannot be refreshed without resending the information. Click Retry to Send the information again, or click Cancel to return to the page that you were trying to view."
With two buttons:
Retry Cancel
How can I avoid the above alert and take "Cancel" as default & refresh immediately?
Thank you
Jeff