I have a classic asp page and a button which when clicked needs to reload the page, I have tried using a lot of options
window.location.reload() is working fine in Chrome but its giving a 'To display the webpage again,the web browser needs to resend the information you've previously submitted' message every time its loaded. The same problem in Firefox. There are no payments or any kind of data-entry on this page, just a view page with print button. Is there any other work around for this.
Any help appreciated. TIA
$('#btnPrin').click(function () {
window.location.reload();
});