mvc4中的剑道按钮导航

时间:2013-12-27 07:13:44

标签: asp.net-mvc-4 button kendo-ui

我在MVC4应用程序中使用了Kendo按钮。如何在按钮点击时将导航写入另一个页面。

@(Html.Kendo().Button()
.Name("btncancel")
.HtmlAttributes( new {type = "button"} )
.Content("Cancel"))

我确实喜欢这个,但我没有得到

<script type="text/javascript">
$(document).ready(function () {
    $('#btncancel').click(function (e)
  {
      location.href = '@Url.Content("~//Company/Index.cshtml")';
  });

});

1 个答案:

答案 0 :(得分:3)

使用

window.location = '@Url.Action("Index", "Company")';