c# 4.0 - What's difference between windows and forms authentication in asp.net mvc 4? -
can point me out tutorial addressing differences between windows , forms authentication in asp.net mvc 4? forgive me if authentication , mvc separated matters, little confuse it.
windows authentication uses windows login: http://en.wikipedia.org/wiki/integrated_windows_authentication
forms authentication user needs provide username , password manually: http://www.asp.net/web-forms/tutorials/security/introduction/an-overview-of-forms-authentication-vb
several ways of doing --> forms , windows , variations:
in "outer" web.config in mvc 4 project see line default:
forms (which using iis)
<authentication mode="forms"> windows authentication handled windows. can used mix of both.
writing customer provider quite common, depends on integration of whether need ldap etc.. sso (single sign on) ssso ( silent single sign on)
1 old way of doing started in 2005 using sql server
aspnet_regsql.exe <options> http://msdn.microsoft.com/en-us/library/ms229862(v=vs.100).aspx#findingthecorrectversion
there claims based..... http://msdn.microsoft.com/en-us/library/hh291061.aspx
simplemembership choice mvc4
Comments
Post a Comment