I'm developing a MVC3 application that will require a user to be authenticated against an AD. I know that there is the option in MVC3 to create an Intranet Application that automatically authenticates a user against an AD, but it uses Windows Authentication and automatically logs them on. This application may be accessed on 'Open' workstations where the user will need to enter their Domain Username and Password. Any examples or online tutorial would be great. An example project would be exceptional.
Take the 2-minute tour
×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the standard Internet application template with forms authentication and insert an
In this way you get the Internet application template login form, and it validates against AD for you. Then it's just a matter of some |
|||||||||
|
As mentioned above, you can use the membership provider defined in the web.config file. The code below is within the implementation of the 'AccountController' from the MVC 3 Template code and has been slightly modified to work with ActiveDirectory:
If using .NET 3.5 -- then read this article for the alternative: |
|||||||||
|