How do I reload a page without a POSTDATA warning in Javascript? - Stack Overflow most recent 30 from stackoverflow.com2010-03-16T19:13:03Zhttp://stackoverflow.com/feeds/question/570015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/570015/how-do-i-reload-a-page-without-a-postdata-warning-in-javascript2How do I reload a page without a POSTDATA warning in Javascript?Ricibaldhttp://stackoverflow.com/users/204092009-02-20T15:35:20Z2009-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#5700279Answer by Rex M for How do I reload a page without a POSTDATA warning in Javascript?Rex Mhttp://stackoverflow.com/users/672009-02-20T15:38:31Z2009-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#5700392Answer by AJM for How do I reload a page without a POSTDATA warning in Javascript?AJMhttp://stackoverflow.com/users/642262009-02-20T15:39:41Z2009-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#5700697Answer by Sam Hasler for How do I reload a page without a POSTDATA warning in Javascript?Sam Haslerhttp://stackoverflow.com/users/25412009-02-20T15:46:59Z2009-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#10785160Answer by Palani for How do I reload a page without a POSTDATA warning in Javascript?Palanihttp://stackoverflow.com/users/02009-07-03T09:16:24Z2009-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>