asp.net-mvc-5 – Windows身份验证在ASP.NET MVC 5网络应用程序中不起作用

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-5 – Windows身份验证在ASP.NET MVC 5网络应用程序中不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个ASP.NET MVC 5应用程序,并尝试启用 Windows身份验证.开发机器是Windows Server 2008 R2,IIS Express 8.0,Visual Studio 2013& .NET Framework 4.5.

当我浏览应用程序时,我发现404未找到错误.该应用程序使用http:// localhost:63455 / Account / Login?ReturnUrl = /进入重定向循环.最终,ReturnUrl最终变得非常大,因为它被附加到每个重定向.

我的web.config看起来像这样:

<system.web>
    <authentication mode="Windows"/>
  </system.web>

我已经尝试在开发服务器属性上设置匿名身份验证和Windows身份验证设置.

我也尝试添加以下appSettings:

<add key="autoFormsAuthentication" value="false"/>
<add key="enableSimpleMembership" value="false"/>

如何使Windows身份验证正常工作?

解决方法

Startup.Auth.cs中的ConfigureAuth方法包含以下需要为Windows身份验证删除代码.

代码用于使用OWIN进行表单验证.

// Enable the application to use a cookie to store information for the signed in user
        app.UseCookieAuthentication(new CookieAuthenticationOptions
        {
            AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,LoginPath = new PathString("/Account/Login")
        });
        // Use a cookie to temporarily store information about a user logging in with a third party login provider
        app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
原文链接:https://www.f2er.com/aspnet/249047.html

猜你在找的asp.Net相关文章