我正在尝试在ASP.net Webforms VB.net中的项目中使用捆绑。
这就是我所做的:
添加了对Web.Optimization的引用 在global.asax
中的Application_start中添加了以下内容sudo update-ca-trust extract
以及我的主文件中的以下内容
BundleTable.EnableOptimizations = True
BundleTable.Bundles.Add(New ScriptBundle("~/bundles/jsglobal").Include("~/js/inlineValidate.js"))
但它只是在渲染页面中显示了这个,
<%:Scripts.Render("~/bundles/jsglobal")%>
它不仅没有唯一的查询字符串,而且也不存在。
不确定问题是什么,我在ASP.net MVC C#中做了完全相同的事情,它运行正常。
答案 0 :(得分:0)
我认为你所看到的是预期的。要进行测试,请将BundleTable.EnableOptimizations转为FALSE。或者只是省略该行,它将自动处理。
ASP.NET MVC Bundle not rendering script files on staging server. It works on development server