How do I reload a page without a POSTDATA warning in Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-16T19:13:03Z http://stackoverflow.com/feeds/question/570015 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript 2 How do I reload a page without a POSTDATA warning in Javascript? Ricibald http://stackoverflow.com/users/20409 2009-02-20T15:35:20Z 2009-11-14T19:12:02Z <p>I want to reload a page using:</p> <pre><code>window.location.reload(true); </code></pre> <p>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?</p> <p>UPDATED: I have no control of the project! I can't workaround the POST itself!</p> http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript/570027#570027 9 Answer by Rex M for How do I reload a page without a POSTDATA warning in Javascript? Rex M http://stackoverflow.com/users/67 2009-02-20T15:38:31Z 2009-02-20T15:38:31Z <p>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.</p> <p>You could re-navigate to the same page with a fresh session by doing:</p> <pre><code>window.location = window.location.href; </code></pre> http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript/570039#570039 2 Answer by AJM for How do I reload a page without a POSTDATA warning in Javascript? AJM http://stackoverflow.com/users/64226 2009-02-20T15:39:41Z 2009-02-20T15:39:41Z <p>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. </p> http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript/570069#570069 7 Answer by Sam Hasler for How do I reload a page without a POSTDATA warning in Javascript? Sam Hasler http://stackoverflow.com/users/2541 2009-02-20T15:46:59Z 2009-02-20T15:59:57Z <p>Just changing <code>window.location</code> in JavaScript is <strong>dangerous</strong> because the user could still hit the <strong>back button</strong> and resubmit the post, which could have unexpected results (such as a <strong>duplicate purchase</strong>). PRG is a much better solution</p> <p><a href="http://en.wikipedia.org/wiki/Post/Redirect/Get" rel="nofollow">Use the Post/Redirect/Get (PRG) pattern</a></p> <blockquote> <p>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.</p> </blockquote> http://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript/1078516#1078516 0 Answer by Palani for How do I reload a page without a POSTDATA warning in Javascript? Palani http://stackoverflow.com/users/0 2009-07-03T09:16:24Z 2009-07-03T09:16:24Z <p>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</p> <p>Regards Palani</p>