2015-08-29 7 views
0

скрипты и стили не рендеринга в страницескрипты и стили не оказывающего

HTML исходный код MVC ASP.NET

<html> 
    <head> 
     <meta charset="utf-8" /> 
     <meta name="viewport" content="width=device-width" /> 
     <title>@ViewBag.Title</title> 
     @Styles.Render("~/Content/css")   
    </head> 

    <body > 
    @Scripts.Render("~/Scripts/js") 
    @RenderSection("Scripts", false) 
    </body> 
</html> 

This Is All My Scripts и стили BundleConfig файла C#, я сделал все, что знаю

public class BundleConfig 
     { 
    // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 
      public static void RegisterBundles(BundleCollection bundles) 
      { 
       BundleTable.EnableOptimizations = true; 

       bundles.Add(new ScriptBundle("~/Scripts/js").Include(
        "~/Scripts/jquery-{version}.js", 
        "~/Scripts/angular.js", 
        "~/Scripts/ang/app.js", 
        "~/Scripts/jquery.unobtrusive-ajax.min.js", 
        "~/Scripts/jquery-ui-1.11.2.js", 
        "~/Scripts/jquery.bpopup.min.js", 
        "~/Scripts/jquery-ui.min.js",      
        "~/Scripts/jquery.validate.min.js", 
        "~/Scripts/jquery.validate.unobtrusive.min.js", 
        "~/Scripts/ui.dropdownchecklist-1.4-min.js", 
        "~/Scripts/sweetalert.min.js", 
        "~/Scripts/jquery.lettering.js", 
        "~/Scripts/ang/app.js", 
        "~/Scripts/js/JavaScript1.js", 
        "~/Scripts/js/JavaScript2.js"        
        )); 
       bundles.Add(new StyleBundle("~/Content/css").Include(
        "~/Content/jquery-ui.css", 
        "~/Content/css/StyleSheet.css", 
        "~/Content/StyleSheet1.css"  , 
        "~/Content/jquery-ui.css", 
        "~/Content/ui.dropdownchecklist.standalone.css", 
        "~/Content/ui.dropdownchecklist.themeroller.css", 
        "~/Content/sweetalert.css", 
        "~/Content/animate.css"  
        )); 

       // Set EnableOptimizations to false for debugging. For more information, 
       // visit http://go.microsoft.com/fwlink/?LinkId=301862   
      } 

результат HTML исходный код MVC ASP.NET КАК ВЫ ВИДИТЕ ТАМ НЕТ СЦЕНАРИИ ANS СТИЛИ

<html> 
    <head> 
     <meta charset="utf-8" /> 
     <meta name="viewport" content="width=device-width" /> 
     <title>Index</title> 
     <link href="/Content/css" rel="stylesheet"/> 
    </head> 
<body > 
    <script src="/Scripts/js"></script>  
</body> 
</html> 
+0

Что происходит, когда вы установите EnableOptimizations ложь? – drneel

+0

ничего все равно – Link

ответ

0

добавить BundleConfig.RegisterBundles (BundleTable.Bundles); в global.asax

0

Вы можете нагружать jquery.ui.css дважды ...

"~/Content/jquery-ui.css", 
"~/Content/css/StyleSheet.css", 
"~/Content/StyleSheet1.css"  , 
"~/Content/jquery-ui.css" 

Смотреть первые и последние строки ...

 Смежные вопросы

  • Нет связанных вопросов^_^