我有一个MVC Web应用程序,其注销表格如下:
@using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { area = "", id = "logoutForm" }))
{
@Html.AntiForgeryToken()
<a href="javascript:document.getElementById('logoutForm').submit()" class="k-button" style="color: black;">Log off</a>
}
问题是,如果我导航到其中一个区域并单击LogOut按钮,则该操作不起作用。
有谁知道如何使上述代码适用于默认区域?
由于 格里
答案 0 :(得分:2)
知道了:
@using(Html.BeginForm(“LogOff”,“Account”,new {area =“”},FormMethod.Post,new {id =“logoutForm”}))
这有效!!!!!