Kendo UI导出到excel

我用Razor使用MVC4。 这里是我的CSS和Java脚本文件的代码

<link rel="stylesheet" href="~/Content/kendo/kendo.common.min.css" type="text/css" > <link rel="stylesheet" href="~/Content/kendo/kendo.rtl.min.css" type="text/css" > <link rel="stylesheet" href="~/Content/kendo/kendo.default.min.css" type="text/css" > <link rel="stylesheet" href="~/Content/kendo/kendo.dataviz.min.css" type="text/css" > <link rel="stylesheet" href="~/Content/kendo/kendo.dataviz.default.min.css" type="text/css" > <link rel="stylesheet" href="~/Content/kendo/kendo.mobile.all.min.css" type="text/css" > <script src="@Url.Content("~/Scripts/kendo/jquery-1.9.1.min.js")"></script> <script src="@Url.Content("~/Scripts/kendo/jszip.min.js")"></script> but the problem is when I call kendo.all.min.js from live url mean when I add this url <script src="http://cdn.kendostatic.com/2014.3.1119/js/kendo.all.min.js"></script> then my grid sucessfully exported to excel but if I use this url <script src="@Url.Content("~/Scripts/kendo/kendo.all.min.js")"></script> 

然后在导出时没有任何反应,还有一件事是项目中的kendo.all.min.js文件与实时URL相同。 请帮助。

解决了! 在我的结尾,它不工作时debugging,但是当我部署在我的本地服务器上,然后开始在那里工作。