How can I refresh a webpage without the browser asking if I want to resend again

Viewed 42758

I got the following code to refresh my webpage. It works great if I don't submit anything with POST but if i do, i get a message from the browser when my webpage refreshes (see image below)

location.reload(true);

I'm not looking for the browser settings tweak. I'm looking for alternative code to refresh without asking. enter image description here

6 Answers
Related