This is what I did so far
bundles.Add(new ScriptBundle("~/bundles/WebformsJS").Include(
"~/Scripts/WebForms/WebForms.js",
"~/Scripts/WebForms/WebUIValidation.js",
"~/Scripts/WebForms/MenuStandards.js",
"~/Scripts/WebForms/Focus.js",
"~/Scripts/WebForms/GridView.js",
"~/Scripts/WebForms/DetailsView.js",
"~/Scripts/WebForms/TreeView.js",
"~/Scripts/WebForms/WebParts.js"));
bundles.Add(new ScriptBundle("~/bundles/MsAjaxJS").Include(
"~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"));
bundles.Add(new ScriptBundle("~/bundles/MegaJS").
.Include("~/bundles/WebformsJS")
.Include("~/bundles/MsAjaxJS"));
Then I render the MegaBundle in Site.Master file like this:
<%: Scripts.Render("~/bundles/MegaJS") %>
The application run with no errors, but when I View Page source I can see the include
<script src="/bundles/MegaJS?v="></script>
If you notice the version is blank and when I click the bundle script its empty
My questions are: 1) Does creating bundle from other bundle's is supported 2) If Yes! then is their an example I can follow.