E
Ed Staffin
Hi I have a intranet app that is using Windows authentication.
I want to set up a log out procedure that takes them to a page where they
can choose to log back in. In FormsAuth I did this using:
FormsAuthentication.SignOut()
Response.Cookies.Clear()
Session.Abandon()
And if the user chose to log back in I just did:
FormsAuthentication.RedirectToLoginPage()
How can do I do the equivalent of FormsAuthentication.SignOut() when I am
using Windows Authentication? Also, once I make whatever call it is to log
out, will they automatically get a sign in dialog when they subsequently try
to access a page?
Thanks ... Ed
I want to set up a log out procedure that takes them to a page where they
can choose to log back in. In FormsAuth I did this using:
FormsAuthentication.SignOut()
Response.Cookies.Clear()
Session.Abandon()
And if the user chose to log back in I just did:
FormsAuthentication.RedirectToLoginPage()
How can do I do the equivalent of FormsAuthentication.SignOut() when I am
using Windows Authentication? Also, once I make whatever call it is to log
out, will they automatically get a sign in dialog when they subsequently try
to access a page?
Thanks ... Ed