PDA

View Full Version : Session.Abandon problem in asp



SBUH
September 7th, 2003, 04:45 AM
Hello, I have some problem with session.abandon. After the user logout, if he click the back button on the menu bar, he still can be redirected back to the previous page with his session("ID") shown. But of course, if he click the other links, the login page will appear. But is there some way that the login page is immediately shown after he logout and click the back button?


Thanks in advance for any of your suggesion!

abzoid
September 7th, 2003, 10:05 AM
The page he's seeing after hitting the back button is most likely loading from his browser cache. You can't do anything about that.

You could alter the logout script to do a redirect to the login page.

SBUH
September 7th, 2003, 01:13 PM
Yes, that is it. Thanks for the idea. Regards!!