vote up 1 vote down star

I have a requirement for an explicit logout button for users in a ASP.NET web app. I am using IIS6 with Basic Authentication (SSL). I can redirect to another web page but the browser keeps the session alive. I have googled around and found a way to do it by enabling an active x control to communicate with IIS and kill the session. I am in a restricted environment that does not allow forms authentication and active x controls are not forbidden as well. Has anyone else had this requirement and how have you handled it?

Okay that is what I was afraid of. I have seen similar answers on the net and I was hoping someone would have a way of doing it. Thanks for your time though. I guess I can use javascript to prevent the back button like the history.back()

flag

4 Answers

vote up 0 vote down check

Have you tried calling Session.Abandon in response to the button click?

Edit:

It would seem this is a classic back button issue.

There is very little you can do about the back button. Imagine the user has just opened the current page in a new window then clicked the logOut button, that page appears to log out but it will not immediately affect the content of the other window.

Only when they attempt to navigate somewhere in that window will it become apparent that their session is gone.

Many browsers implement the back button in a similar (although not identical) way. Going back to the previous page is not necessarily a navigation for a HTML/HTTP point of view.

link|flag
when I click back I am still authenticated. protected void logOut_Click(object sender, EventArgs e) { Session.Clear(); Session.Abandon(); ViewState.Clear(); FormsAuthentication.SignOut(); Response.Redirect("google.org";); } – willyconnor Mar 4 at 22:18
vote up 0 vote down

@Ram : window.history.back(-1);

link|flag
vote up 0 vote down

hi,

i am using window.history.forward()..in javascript for redirecting the user to forward from the current page..but is not working in mozilla as well as IE.. could youplease suggest what i have to use?

ex : - window.history.forward()

Thanks Ram

link|flag
vote up 1 vote down

The Session.Abandon method destroys all the objects stored in a Session object and releases their resources. If you do not call the Abandon method explicitly, the server destroys these objects when the session times out.

link|flag
when I click back I am still authenticated. protected void logOut_Click(object sender, EventArgs e) { Session.Clear(); Session.Abandon(); ViewState.Clear(); FormsAuthentication.SignOut(); Response.Redirect("google.org";); } – willyconnor Mar 4 at 22:18
This sounds like you're viewing a cached version of the page. If you try and force a refresh from the server, you will notice a that the session has expired. – Ken Browning Mar 4 at 23:39
I should also note that you can disable caching. There are several stackoverflow questions which explain how this is accomplished. – Ken Browning Mar 4 at 23:41
@Ken: content made available via the back button does not necessarily come from the cache or honor the servers supplied cache control headers. The back button facillity is beyond the remit of the HTTP protocol is entirely at the browsers discretion. – AnthonyWJones Mar 5 at 17:33
Good point, thank you. – Ken Browning Mar 5 at 18:19
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.