MVC 4中的CSS捆绑

时间:2016-11-11 04:34:11

标签: c# asp.net asp.net-mvc bundling-and-minification

我正在使用MVC 4构建一个Web应用程序。我正在使用bootstrap来设计我的UI。 我已将我的引导程序文件包含在我的解决方案上的BundleConfig.cs文件中,以减小文件大小并优化我的站点响应能力和加载速度。呈现视图页面并引用包名称似乎不会为我输出所需的结果。

我尝试通过CDN引用引导程序并且它可以工作,所以我认为故障在捆绑中。但是我无法弄清楚错误。任何帮助表示赞赏。谢谢。

BundleConfig.cs

using System.Web;
using System.Web.Optimization;

namespace TMS
{
    public class BundleConfig
    {
        // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
    public static void RegisterBundles(BundleCollection bundles)
    {
        bundles.IgnoreList.Clear();

        bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
            "~/Scripts/jquery-{version}.js"));

        bundles.Add(new ScriptBundle("~/bundles/bootstrapjs").Include(
            "~/Scripts/bootstrap.min.js"));

        bundles.Add(new StyleBundle("~/Content/BootstrapFiles").Include(
            "~/Content/bootstrap.min.css",
            "~/Content/bootstrap-responsive.min.css",
            "~/Content/bootstrap.css",
            "~/Content/bootstrap-responsive.css"));

        //BundleTable.EnableOptimizations = true;
    }
}
}

_Layout.cshtml

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>@ViewBag.Title</title>
<!--    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
    @Styles.Render("~/Content/BootstrapFiles")
</head>

并且在页面正文中我试图让导航栏变黑并且与右侧对齐

<nav class="navbar navbar-inverse">
    <div class="container-fluid">
        <div class="navbar-header">
            <a class="navbar-brand" href="#">Welcome to Sri Lanka!</a>
        </div>

        <ul id="menu" class="nav navbar-nav navbar-right">
            <li>@Html.ActionLink("Home", "Index", "Home")</li>
            <li>@Html.ActionLink("About", "About", "Home")</li>
            <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
        </ul>
    </div>
</nav>

P.S。我还在主web.config文件中设置了调试模式false     

1 个答案:

答案 0 :(得分:1)

当您的应用程序从全局ajax

开始时,您需要调用RegisterBundles

等。

Global.ajax.cs文件中的

 protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();
        RouteConfig.RegisterRoutes(RouteTable.Routes);//for register route
        BundleConfig.RegisterBundles(BundleTable.Bundles);//for register bundle
    }