Fri, Mar 09 2012 06:16 PM|LINK
I have a requirment to disable BACK button of browser.
I have tried following options:
1. Used following Javascript to redirect on the same page again.
<script type="text/javascript">
window.history.forward();
function noBack() { window.history.forward(); }
</script>
<body onload="noBack();" onunload="">
But in this case we loose the data on the current page
2. open child webpage in new window.
But
in this case popup Blocker blocks the page to display
Can
any expert help me a better solution/idea.....
regards,