PreviousNext

Configuring ASP.NET MVC 5 Login Options

by bill-s, 2013-07-20T08:09:13.000Z

ASP.NET MVC 5 added some great new features. One is brand new security feature (Microsoft.AspNet.Identity) which is based on Open Web Interface for .NET(OWIN) middleware. Means we can easily use OWIN security features(Claims and Login with Facebook, Google, Microsoft, Twitter, etc.) in ASP.NET as well as in other OWIN based hosts. The default settings for login are fine but you can easily configure them to meet your needs. In this article, I will tell you how to configure the login options in ASP.NET MVC 5.

Read More