BonduleConfig.cs :------------------------------------------------------------ bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js")); bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include( "~/Scripts/jquery-ui-{version}.js")); Bondule.config:------------------------------------------------------------ <styleBundle path="~/Content/css"> <include path="~/Content/bootstrap.css" /> <include path="~/Content/Site.css" /> </styleBundle> xxx.aspx------------------------------------------------------------ <asp:PlaceHolder runat="server"> <%: Scripts.Render("~/bundles/jquery") %> <%: Scripts.Re...