FormsAuthentication.SignOut()不想重定向到注销视图

时间:2012-07-23 13:55:01

标签: asp.net-mvc-3 forms-authentication

我尝试在用户点击注销时重定向到注销视图,但是mvc拦截了重定向。

public ActionResult LogOff()
{
FormsAuthentication.SignOut();
return RedirectToAction("Logout", "Account"); 
}

public ActionResult Logout()
{
return View("LogOff");
}

我喜欢注销后显示的LogOff视图

2 个答案:

答案 0 :(得分:0)

如果我理解这个问题,那么在这个链接上有一个很好的答案和类似的答案。

MVC3 Razor Engine execution/rendering order

答案 1 :(得分:0)

我猜您已使用Authorize属性标记了完整的帐户控制器。您应该只装饰需要授权的操作。