MVC Developer Question:

Download Job Interview Questions and Answers PDF

Tell me how to implement Forms authentication in MVC?

MVC Developer Interview Question
MVC Developer Interview Question

Answer:

ASP.NET forms authentication occurs after IIS authentication is completed. You can configure forms authentication by using forms element with in web.config file of your application. The default attribute values for forms authentication are shown below:

☰ <system.web>
☰ <authenticationmode="Forms">
☰ <formsloginUrl="Login.aspx" protection="All" timeout="30" name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="default.aspx" cookieless="UseDeviceProfile" enableCrossAppRedirects="false" />
☰ </authentication>
☰ </system.web>

The FormsAuthentication class creates the authentication cookie automatically when SetAuthCookie() or RedirectFromLoginPage() methods are called. The value of authentication cookie contains a string representation of the encrypted and signed FormsAuthenticationTicket object.

Download MVC Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Explain me what is the difference between each version of MVC 2, 3 , 4, 5 and 6?Explain me what is the use of Keep and Peek in “TempData”?