Load from JavaScript Array
BundleConfig.cs
using System.Web; using System.Web.Optimization; namespace Libing.jQGrid.Web { public class BundleConfig { public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js")); bundles.Add(new ScriptBundle("~/bundles/jqgrid").Include( "~/Scripts/i18n/grid.locale-cn.js", "~/Scripts/jquery.jqGrid.src.js")); bundles.Add(new StyleBundle("~/Content/css").Include( "~/Content/jquery.jqGrid/ui.jqgrid.css", "~/Content/themes/base/theme.css")); } } }