Question
Back button issue
When a user come from any site to my application, i don't
want user to use back button and go back to the site he came from.
How can i disable back button in above case in IE and Firefox. What is the best solution?.
I was using below code. This is not doing what i want. This disables user going back to previous page in my application. It allow him to go back the site he came from.
<script language="javascript">
window.history.forward(1);
</script>
How can i disable back button in above case in IE and Firefox. What is the best solution?.
I was using below code. This is not doing what i want. This disables user going back to previous page in my application. It allow him to go back the site he came from.
<script language="javascript">
window.history.forward(1);
</script>