I’m using following line of code to disable the browser back button problem after logout.
function LogoutOnClick() {
window.history.go(-1);
}
But, there is one problem with this code, supposing I’ve three page first is login page(login.cshtml
) and second successfully logged in page(home.cshtml
) and third page is about page (about.cshtml
),
now I do login then it will redirect me on home.cshtml
page now that I move on the third page about.cshtml
and after that I do logout from about.cshtml
page, it redirects me on login.cshtml
page.
And now if I clicked on browser back button
then redirects me on about.cshtml
page again but there user couldn’t change or add anything.
So let me know is there any appropriate code or method to resolved this problem.
I’m using following line of code to disable the browser back button problem after logout.
function LogoutOnClick() {
window.history.go(-1);
}
But, there is one problem with this code, supposing I’ve three page first is login page(login.cshtml
) and second successfully logged in page(home.cshtml
) and third page is about page (about.cshtml
),
now I do login then it will redirect me on home.cshtml
page now that I move on the third page about.cshtml
and after that I do logout from about.cshtml
page, it redirects me on login.cshtml
page.
And now if I clicked on browser back button
then redirects me on about.cshtml
page again but there user couldn’t change or add anything.
So let me know is there any appropriate code or method to resolved this problem.
Share Improve this question edited Mar 14, 2013 at 9:22 Mallikarjuna Reddy 1,2122 gold badges20 silver badges33 bronze badges asked Mar 14, 2013 at 9:15 Pravesh SinghPravesh Singh 3241 gold badge8 silver badges27 bronze badges3 Answers
Reset to default 6You'll need to disable browser caching of pages that are only visible when logged in to prevent users from going back to pages they had when they were logged in, after they've logged out. Then you won't need to worry about disabling the back button. If they try access a page that requires them to be logged in, you'll redirect them to the login page.
To disable the back browser button learn more : here
I think that this code will can help you :
<SCRIPT type="text/javascript">
window.history.forward();
function noBack() { window.history.forward(); }
</SCRIPT>
</HEAD>
<BODY onload="noBack();"
onpageshow="if (event.persisted) noBack();" onunload="">
EDIT : For disable after a logout check this : here
I do not think, that disabling the back-button in the browser is what you want, or not what you should want! From a security point of view, you should try to destroy the session. And you should proof the permissions at every request of the page.
Think about, what you want to archive ;-)