使用ASP.NET Identity 2.0时,注销无效。它有时有效。我们必须经常点击两次LogOff操作才能实际注销。本地调试工作正常。它在实时服务器上存在问题。有任何想法吗?这是我们的LogOff方法:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
AuthenticationManager.SignOut();
return RedirectToAction("Index", "General");
}