2012-12-02 46 views
0

我有一個註銷表單這樣的MVC Web應用程序:ASP.NET MVC地區Naviation

@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> 
    } 

的問題是,如果我導航到的地區之一,我點擊退出按鈕的動作不起作用。

有誰知道如何使上述代碼與默認區域一起工作?

感謝 格里

回答

2

明白了:

@using(Html.BeginForm( 「註銷」, 「帳戶」,新{面積= 「」},FormMethod.Post,新{ID =「 logoutForm「}))

This works !!!!!