我已经在IIS上以发布模式部署了MVC。但它不起作用。当我在调试模式下部署它时工作正常。但是,如果我在发布模式下在IIS 6上部署MVC4应用程序,则会出现脚本URL错误。
这是我的捆绑代码。
bundles.Add(new ScriptBundle("~/Scripts/jquery").Include(
"~/Scripts/jquery-1.10.js",
"~/Scripts/jquery-ui-1.10.js"));
bundles.Add(new ScriptBundle("~/Scripts").Include(
"~/Scripts/HelpManager/helpManager.js",
"~/Scripts/default.js",
"~/Scripts/purl.js",
"~/Scripts/jquery.switchbutton.js",
"~/Scripts/jquery.easing.js"));
bundles.Add(new StyleBundle("~/Styles").Include(
"~/Styles/jquery-ui-theme/jquery-ui-1.10.3.custom.css",
"~/Styles/default.css",
"~/Styles/reset.css",
"~/Styles/switchButton.css"));