在我的控制器中,我有类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>
这不起作用,任何人都知道什么是问题或其他一些简单的解决方案?