用户验证失败

时间:2014-09-19 20:55:17

标签: asp.net-mvc forms-authentication

我正在开发ASP.NET MVC 5应用程序并且在用户身份验证方面存在问题。所有申请

我已添加到配置

<authentication mode="Forms">
  <forms loginUrl="~/Account/Login" defaultUrl="/" />
</authentication>
<authorization>
  <deny users="?" />
  <allow users="*" />
</authorization>

强制用户以任何方式登录。但现在我无法log in甚至Register按钮无法正常工作。我从标准的Visual Studio 2013模板开始,所以我没有进行任何自定义。

任何想法是什么问题?

1 个答案:

答案 0 :(得分:0)

身份验证已在模板中实施。您已在IdentityModels.csAccountController.cs中实施,无需添加任何内容,仅在您希望使用OpenAuth时。