Hello everyone. I have an application (ASP and SQL Server) that requires a user to login and logout. When the user logs out, it takes them to the appropriate page. However, if they were to click the "Back" button on their browser, they still have access to the last page they had visited. Is there a way to keep the user from viewing the last page visited when they click the "Back" button?
Here is my logout code:
<%
Response.Buffer=True
Session.Abandon
Response.Clear
Response.Redirect "login.asp"
%>
Any and all suggestions and advice will be greatly appreciated.
Here is my logout code:
<%
Response.Buffer=True
Session.Abandon
Response.Clear
Response.Redirect "login.asp"
%>
Any and all suggestions and advice will be greatly appreciated.