ASP.NET Windows Authentication logout - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:43:20Z http://stackoverflow.com/feeds/question/1067263 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1067263/asp-net-windows-authentication-logout 0 ASP.NET Windows Authentication logout SmilingRob 2009-07-01T04:23:40Z 2009-10-09T19:11:03Z <p>How do you logout when using Windows authentication in ASP.NET like this web.config?</p> <pre><code>&lt;authentication mode="Windows" /&gt; </code></pre> <p>I've already tried the following unsuccessfully. It redirects, but does not log out the user.</p> <pre><code>void logoutButton_Click(object sender, EventArgs e) { HttpContext.Current.Session.Clear(); HttpContext.Current.Session.Abandon(); ViewState.Clear(); FormsAuthentication.SignOut(); Response.Redirect("/"); } </code></pre> <p>Background Info:</p> <p>I have to use Windows authentication because I need to impersonate the identity using Active Directory to gain access to local files. And I cannot impersonate using Forms authentication because the <code>HttpContext.Current.User.Identity</code> won't be a <code>WindowsIdentity</code>. <a href="http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication">http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication</a></p> http://stackoverflow.com/questions/1067263/asp-net-windows-authentication-logout/1067362#1067362 2 Answer by tribus for ASP.NET Windows Authentication logout tribus 2009-07-01T05:09:08Z 2009-07-01T05:09:08Z <p>Windows authentication works at the IIS level by passing your Windows authentication token. Since authentication occurs at the IIS level you cannot actually log out from application code. However, there seems to be an answer to your problem <a href="http://visualstudiomagazine.com/articles/2004/05/01/activate-windows-impersonation-selectively.aspx" rel="nofollow">here</a>. It is the second question addressed and essentially involves using Forms Authentication and the LogonUser Windows api.</p> http://stackoverflow.com/questions/1067263/asp-net-windows-authentication-logout/1545581#1545581 1 Answer by SmilingRob for ASP.NET Windows Authentication logout SmilingRob 2009-10-09T19:11:03Z 2009-10-09T19:11:03Z <p>No logout button will work when using "Windows" authentication. You must use "Forms" authentication if you want a logout button, or close the user's browser.</p>