vote up 0 vote down star

How exactly can one implement a Log off function when using ASP.NET Forms Authentication on an intranet application?

How will this work if I am an administrator and want to log in "as someone else" into the application?

Please share your ideas

flag

50% accept rate
Why are you using forms authentication on an intranet application? Why not use windows authentication? – JarrettV Oct 29 '08 at 16:37
At my previous job we didn't have any kind of Active Directory/LDAP solution, so we were forced to use Forms Authentication as well. – Dillie-O Oct 29 '08 at 16:51

3 Answers

vote up 6 vote down check

FormsAuthentication.SignOut(); ;)

link|flag
vote up 0 vote down

The preferred authentication for an intranet application is to use windows authentication instead of forms authentication.

In which case you can just log off of windows and login as "someone" else.

link|flag
vote up 0 vote down

Don't forget to also add Session.Abandon() to ensure session data is purged as well

link|flag

Your Answer

Get an OpenID
or

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