I am developing an MVC application that offers user two options for authentication: 1- Windows Authentication 2- Custom Authentication
Based on user selection:
1- If Windows, the username and password will be dimmed, application will use windows authentication.
2- If custom, user enters username and password to get authenticated.
Does this model work in ASP.NET MVC?
Thanks