Windows Authentication and Forms Authentication together for ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:09:35Z http://stackoverflow.com/feeds/question/892911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/892911/windows-authentication-and-forms-authentication-together-for-asp-net 2 Windows Authentication and Forms Authentication together for ASP.NET craigmoliver 2009-05-21T13:24:31Z 2009-05-21T14:43:22Z <p>I am developing an internally-facing application that needs to automatically authenticate users via Windows Authentication and fall back to Forms authentication. The fall back would occur in situations where the user on a computer logged in as a group account (such as an operations center). I'm concerned about security where a user could "spoof" the Windows Authentication account. Do any of you all know of a design pattern and pragmatic idea that would fit this specific scenario?</p> <p>Technical Constraints: .NET 3.5 on IIS 6 (IIS 7 is currently a non-starter in our environment)</p> <p>Thanks!</p> http://stackoverflow.com/questions/892911/windows-authentication-and-forms-authentication-together-for-asp-net/893286#893286 1 Answer by Phil Jenkins for Windows Authentication and Forms Authentication together for ASP.NET Phil Jenkins 2009-05-21T14:43:22Z 2009-05-21T14:43:22Z <p>There's an old article on MSDN <a href="http://msdn.microsoft.com/en-us/library/ms972958.aspx" rel="nofollow">here</a>, which involves a custom 401 redirect set up in IIS - hopefully it's of some help.</p>