ASP.Net MVC 3 Scopes and Mixed Authentication

Is it possible for the ASP.Net MVC realm to use a different authentication and then the rest of the application? The main application must be forms authentication, as it is an extranet. I need to have an Admin section, access to which is possible only for internal employees. I did a lot of research and found examples of how to do mixed mode, but I did not find anything showing how to do this using ASP.Net MVC Area.

Thank you for your help.

+3
source share
1 answer

Each area can have its own web.config, where you can configure / change the type of authentication required.

web.config: http://mstechkb.blogspot.com/2010/10/areas-in-aspnet-mvc-20.html

+3

All Articles