0
我在我的共享/ _layout.cshtml中使用jqueryui按鈕作爲登錄按鈕。以下是點擊事件的代碼。點擊按鈕後,我希望將用戶轉移到帳戶控制器的登錄視圖。jqueryui button click not working with url.action
$("#btnSignIn").click(function() {
//alert("This is button on click event.");
top.location.href = '<%= Url.Action("Logon", "Account"); %>'
});
調試時,出現以下錯誤。我已經在SO尋找幫助。
我很新的MVC,還在身邊工作我的方式與語法。感謝您的解決方案。 – Purusartha