I am currently developing a project that will use Windows authentication to authorize users and set their specific permissions. However, every time I run the program to test, t
As it turns out, when creating an MVC ASP.NET application, two web.config files are generated. My changes were going into the wrong web.config file (the one under the views folder), rather than the main one in the application. By applying the changes in my original question to this other config file, the application works as intended.
For more information on the two web.config files, see this SO question: Why does .NET generate two web.config files in an MVC asp.net application?