我在 ASP.NET MVC 4 中使用默认登录模块。我没有更改默认应用程序中的任何代码,而是将其托管在共享服务器上。
在我使用默认登录页面登录后。我让浏览器闲置了一段时间。然后当我尝试使用 [Authorize]
属性执行任何控制器操作时,显然应用程序重定向到登录页面。
然后我尝试再次登录,当我单击登录按钮时出现错误。
The anti-forgery cookie token and form field token do not match.
登录操作
// POST: /Account/Login
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{
return RedirectToLocal(returnUrl);
}
// If we got this far, something failed, redisplay form
ModelState.AddModelError("", "The user name or password provided is incorrect.");
return View(model);
}