I have a scenario where some users will be required to register with the application (forms authentication), while others will be authenticated through Windows authentication. To determine if a user needs to log in, I will look for permissions for users of the AD window using a special role / permission implementation.
In ASP.NET MVC, you can configure the authentication configuration to "Windows" or "Form Authentication." I know that this can be done by creating two applications, but I do not like this option
I'm going to try to convince my boss that getting everyone to log in will make our life a lot easier, but I thought it was best to check if there were any good options. I could not find one possible solution for ASP.NET MVC. I am using version 2.
Any ideas?
source
share