微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MVC 捆绑外部链接

如何解决MVC 捆绑外部链接

如何保存此链接中的任何内容并将其用于我的 MVC 捆绑

<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.2/themes/blitzer/jquery-ui.css">



  public static void RegisterBundles(BundleCollection bundles)
        {
            bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                        "~/Scripts/jquery-{version}.js","~/Scripts/jquery-ui-{version}.js")); 

}

解决方法

如果你有这样的链接

<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.2/themes/blitzer/jquery-ui.css">

然后去https://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.2/themes/blitzer/jquery-ui.css

 1) Right click the page then Save As - it should be a .cs file
    
 2)After saving it,just copy it to your MVC Project inside Content folder.

 3) Bundle it  
bundles.Add(new StyleBundle("~/Content/css").Include(
                      "~/Content/bootstrap.css","~/Content/site.css","~/Content/blitzer.css")); 
      //This is what I added,I named my file blitzer when saving it 
        }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。