-
Junior Member
asp
may i know the coding when the logout button clicked how the back button of the browser ll be disabled??????
-
Administrator
Re: asp
There are few ways it can be handled...
if you are setting session variable on login, you can set to nothing since you will be checking on all the pages to see if the user is authenticated ...
another option is expire the current page ..
Response.Expires = 0
Response.Cache.SetNoStore()
Response.AppendHeader("Pragma", "no-cache")
with this user should get page expired message if he tries to use back button...
Let me know how it goes..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules