我在MVC4中實現綁定和縮小,但在IIS服務器上部署時不起作用。我用下面的代碼在我BundleConfig.cs啓用綁定只能在mvc4中不縮小
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new StyleBundle("~/Content/styles/siteCss").Include("~/Content/styles/reset.css"));
bundles.Add(new ScriptBundle("~/siteJsCommon").Include("~/Scripts/html5.js",
"~/Scripts/jquery.js",
"~/Scripts/jquery-migrate-1.1.1.js",
"~/Scripts/jquery-ui-1.10.3.custom.js",
"~/Scripts/carousel.js",
"~/Scripts/template.js",
"~/Scripts/jquery.validate.js",
"~/Scripts/additional-methods.js",
"~/Scripts/function.js"));
BundleTable.EnableOptimizations = true;
}
即使我在web.config中進行檢查。看起來很好。
<compilation debug="false" targetFramework="4.5" />
任何人都可以告訴我我在做什麼錯誤。 是否可以只啓用軟件包?
感謝 阿樹
可能重複:ASP.NET捆綁如何禁用縮小(http://stackoverflow.com/questions/11944745/asp-net-bundles-how-to-disable-縮小) – rexcfnghk
感謝您的回覆。要做到這一點,最簡單的方法是將Script/StyleBundles更改爲默認沒有Transform設置的純Bundles,這將關閉縮小但仍然捆綁。你可以建議我該怎麼做**純捆** ** – Ashutosh
請建議我如何啓用捆綁只。 – Ashutosh