Reputation: 2352
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
Upvotes: 0
Views: 3268
Reputation: 10591
All the solutions I've heard of involve either two applications or two different pages for authentication types. There is some discussion here about it: ASP.NET MVC and mixed mode authentication
Upvotes: 1