Looking for a cross-browser way to log a user off a webpage which uses windows authentication.

link|improve this question

Could someone please enlighten me by telling what is a "webpage which uses windows authentication"? – chronos Dec 7 '09 at 19:02
@Chronos, .NET supports 2 modes of Authentication - Windows and Forms. Windows uses the account that the user is logged into the Machine with, forms uses the standard Username/Password fields. Google should tell you the rest. – Pino Dec 8 '09 at 9:36
@Pino - thanks! I've never been developing Windows-specific websites, thus my lack of knowledge. – chronos Dec 8 '09 at 11:55
feedback

4 Answers

up vote 2 down vote accepted
+50

There is not an ultimate solution. This is a known limitation of all types of www authentications.

You can send a fake unauthorized answer to request password again. This approach may help you to simulate logoff.

Response.Status = "401 Unauthorized"
Response.AddHeader "WWW-Authenticate", "Negotiate"
Response.AddHeader "WWW-Authenticate", "NTLM"
link|improve this answer
Interesting. Best so far. – Will Dec 8 '09 at 16:30
feedback

Closing the browser is the only cross browser way I've found to do that. This is one of the reasons that we had to switch to using Forms authentication.

link|improve this answer
1  
You must mean close all browser instances – Oded Dec 3 '09 at 22:01
3  
Actually he would mean all browser windows in the same process - what this actually means is dependant on which browser it is. – AviD Dec 8 '09 at 0:37
feedback

The following link might help you:

Microsoft Support

link|improve this answer
2  
activex != cross browser. Also, can that be any older? IE 4.1? No rep for u. – Will Dec 8 '09 at 14:45
feedback

What is the point of logging the user out? Do you want them to have to close the browser and go to the site again and be automatically logged in?

If it is just a purely visual fake out, then I would use a cookie to indicate if the user needs to be shown the login screen or not. It would have nothing to do with Authentication or Authorization, just purely an indicator of if they are "logged in".

What happens when they are logged off and go to the login screen? Do you want them to actually have to enter their credentials at that point? What is the "Log in after Log out" user story?

link|improve this answer
The point is handling situations where users must log on to a website to use it, they aren't allowed to share sessions (user Hurr can't log on twice at the same time), and users constantly close the browser without logging off, meaning they must wait until their session times out before they can log back in again. – Will Dec 9 '09 at 19:08
feedback

Your Answer

 
or
required, but never shown

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