I would like to stop users from going back to the previous page once logged out. Stop Accessing Previous Pages After Signout – Disable Browser Back Button.

For this situation, I plan to write down a cookie once logged out (check the “SetLogoutCookie” function) and read the cookie once per age load for every online page except login.aspx (check the “RedirectToLoginPage” function). If the data in the cookie means that the user logged out, then redirect current page to login.aspx. As an example, I have provided the subsequent code for your reference. Hope it’s useful to you.

ASP.NET Code for Default page:

 

C# Code for Default page:

 

ASP.NET Code for Login page:

 

C# Code for Login page:

 

Code for Web Config:

P.S. You can put the JavaScript code to a separate js file and include the file in each page.

Leave a Comment