Disable back button using javascript

For disabling the back button functionality in the browser
Use this code on the master page

 <script type="text/javascript">
function noBack() {
window.history.forward()
}
noBack();
window.onload = noBack;
window.onpageshow = function (evt) { if (evt.persisted) noBack() }
window.onunload = function () { void (0) }
</script>


In this code using the <head> --script--</head>

Comments

Popular posts from this blog

Display Canvasjs Line Chart using Data from Database

Insecure cookie setting: missing Secure flag

Tips for Protecting Your Email Privacy