在我的控制器中我有类 AccountController 并且在我有这个方法
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
WebSecurity.Logout();
return RedirectToAction("Index", "Home");
}
在我的视图中,我有带有正文的 cshtml 页面和这部分代码
<form class="float_left" action="Controllers/AccountController" method="post">
<button class="btn btn-inverse" title="Log out" type="submit">Log Off</button>
</form>
这不起作用,有人知道什么是问题或其他一些简单的解决方案吗?