IIS express applicationhost.config security is reset every time a solutions is opened in VS2012

前端 未结 3 996
走了就别回头了
走了就别回头了 2021-01-04 13:09

I have an MVC4 application been developed in VS2012 that uses forms authentication.

[authentication mode=\"Forms\"]
  [forms loginUrl=\"~/Account/Login\" timeout=\         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-04 13:37

    If the problem is that Visual Studio updates the two settings in the applicationhost.config when opening the solution, you can solve it by selecting the Project in the Solution Explorer, view the Properties pane (available when you're not in debug mode) and set to Enabled the two items Anonymous Authentication and Windows Authentication.

    By the way, in my case the parameter generating the 401.2 error was just Anonymous Authentication, you might want to try to leave the default one for Windows Authentication.

    (PS, your post solved the problem for the 401.2 and really saved my day so many thanks for it!)

提交回复
热议问题