MVC 4 application goes to login page first using Windows auth when run

前端 未结 4 2107
我在风中等你
我在风中等你 2021-01-26 12:14

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

4条回答
  •  迷失自我
    2021-01-26 12:51

    You can comment the code to configure the AppBuilder in StartUp.cs

      public partial class Startup
        {
            public void Configuration(IAppBuilder app)
            {
                //ConfigureAuth(app);
            }
        }
    

提交回复
热议问题