I have MVC solution and have a lot of JS and CSS for all of website, when the page loading, all of JS and CSS is also loading, but some of page only need some of specific JS or CSS in bundles. Ex:
bundles.Add(new ScriptBundle("~/scripts/jquery").Include(
"~/Scripts/JQuery/jquery-1.9.1.js",
"~/Scripts/JQuery/jquery-ui-1.8.24.js",
"~/Scripts/JQuery/jquery.minicolors.js",
"~/Scripts/JQuery/jquery.fontselector.js"));
In page A I render script like that:
<asp:PlaceHolder runat="server">
<%: Scripts.Render("~/scripts/jquery") %>
</asp:PlaceHolder>
But in page B, I want only load jquery-1.9.1.js, not load to all js in bundles. So my question is how to load specific file js in page B.