Windows Authentication and Forms Authentication together for ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T15:09:35Zhttp://stackoverflow.com/feeds/question/892911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/892911/windows-authentication-and-forms-authentication-together-for-asp-net2Windows Authentication and Forms Authentication together for ASP.NETcraigmoliver2009-05-21T13:24:31Z2009-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#8932861Answer by Phil Jenkins for Windows Authentication and Forms Authentication together for ASP.NETPhil Jenkins2009-05-21T14:43:22Z2009-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>