csharp 典型的ASP.NET MVC捆绑类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 典型的ASP.NET MVC捆绑类相关的知识,希望对你有一定的参考价值。

using System.Web.Optimization;

namespace YourNameSpace
{
    public class BundleConfig
    {
        // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
        public static void RegisterBundles(BundleCollection bundles)
        {
            //Scripts
            bundles.Add(new ScriptBundle("~/bundles/js").Include(
                "~/path/to/your/jquery.js",
                "~/path/to/your/bootstrap.min.js",
                // add many here
                "~/path/to/your/app.js"
                ));

            //CSS
            bundles.Add(new StyleBundle("~/bundles/styles").Include(
                "~/path/to/bootstrap.css",
                // many here
                "~/path/to/styles.css"
                ));
        }
    }
}

以上是关于csharp 典型的ASP.NET MVC捆绑类的主要内容,如果未能解决你的问题,请参考以下文章

捆绑包未在 ASP.NET MVC 4 中加载

具有捆绑和缩小功能的 ASP.NET MVC 4 应用程序,为啥在调试模式下启用缩小?

如何在 ASP.NET MVC 中集成 AngularJS

为啥捆绑包在我的 asp.net mvc 项目中不起作用?

Azure 中的捆绑不适用于 bootstrap 和 jquery、ASP.NET MVC 5

csharp ASP.NET的助手,ASP.NET MVC应用服务器端测试