I want to reload a page using:

window.location.reload(true);

But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page without this warning?

UPDATED: I have no control of the project! I can't workaround the POST itself!

link|improve this question

55% accept rate
resubmitting a POST (which is what a reload does) will always bring up that warning. You could do another POST instead of reloading, although that would fill up the users browsers history if you do it too often, and they'd still get the warning if they hit the back button. – Sam Hasler Feb 20 '09 at 16:39
Duplicate: stackoverflow.com/questions/1073593/… – Quentin Jul 3 '09 at 9:18
feedback

5 Answers

up vote 15 down vote accepted

Just changing window.location in JavaScript is dangerous because the user could still hit the back button and resubmit the post, which could have unexpected results (such as a duplicate purchase). PRG is a much better solution

Use the Post/Redirect/Get (PRG) pattern

To avoid this problem, many web applications use the PRG pattern — instead of returning an HTML page directly, the POST operation returns a redirection command (using the HTTP 303 response code (sometimes 302) together with the HTTP "Location" response header), instructing the browser to load a different page using an HTTP GET request. The result page can then safely be bookmarked or reloaded without unexpected side effects.

link|improve this answer
I have no control of the project. I can't workaround the POST itself! – Ricibald Feb 20 '09 at 16:21
PRG is done after the POST, silently redirecting the client to a GET page so they don't have the POST in their history. (It's worth bringing up with whoever does have control.) If that's something you're not able to do then can you navigate to a GET page instead of reloading the POST? – Sam Hasler Feb 20 '09 at 16:31
1  
Yes, but redirecting a POST require some form of control – Ricibald Feb 20 '09 at 17:26
feedback

You can't refresh without the warning; refresh instructs the browser to repeat the last action. It is up to the browser to choose whether to warn the user if repeating the last action involves resubmitting data.

You could re-navigate to the same page with a fresh session by doing:

window.location = window.location.href;
link|improve this answer
the user could still hit the back button and resubmit the post, which could have unexpected results (such as a duplicate purchase). PRG is a much better solution. – Sam Hasler Feb 20 '09 at 15:48
Maybe, but if the user clicks back for whatever reason they will still get a warning, so perhaps using PRG depends on what the consequences of resubmission are. – AJM Feb 20 '09 at 16:01
true, if the server recognises duplicate posts it's not a problem, but the user is still presented with a dialog to worry about. With PRG the user will never see that dialog. – Sam Hasler Feb 20 '09 at 16:04
@sam you've gone outside the scope of the question. we don't know anything about how or why the asker is in the situation he's in. – Rex M Feb 20 '09 at 18:36
works , thnx sir :) – mahmoud Nov 28 '10 at 14:39
feedback

If you are at the stage where you are finished with the post data and simply want to view the page again afresh, you could just use a window.location and even maybe append a random string as a query paramater to guarantee a new version of the page.

link|improve this answer
the user could still hit the back button and resubmit the post, which could have unexpected results (such as a duplicate purchase). PRG is a much better solution. – Sam Hasler Feb 20 '09 at 15:52
feedback

how about window.location.replace(window.location.href);

link|improve this answer
feedback

hi if you use GET method instead of POST then we can't the form filed values. If you use window.opener.location.href = window.opener.location.href; then we can fire the db and we can get the value but only thing is the JSP is not refreshing eventhough the scriplet having the form values

Regards Palani

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.