在我的开发工作室中,我有我的包:
bundles.Add(new ScriptBundle("~/bundles/jquery")
.Include("~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval")
.Include("~/Scripts/jquery.validate*"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui")
.Include("~/Scripts/jquery-ui*"));
当我在一个文件夹" XXX"中发布到我的生产服务器时,在IIS中,它会在下面的JavaScript中引发错误。
而不是请求http://localhost/XXX/Scripts请求http://localhost/Scripts
如何从应用程序根文件夹而不是服务器根目录中选择它?