私は MVC4StyleBundle
を使用して大量の CSS をバンドルしています。IE 9 以下でのみ必要な CSS が 1 つあります。
メソッドのBundleConfig
クラスには、次のものがあります。RegisterBundles
if (HttpContext.Current.Request.Browser.Browser.Trim().ToUpperInvariant().Equals("IE") && HttpContext.Current.Request.Browser.MajorVersion <= 9)
cssBundle.Include("~/Content/ie.css");
しかし、その後Request is not available in this context
エラーが発生しました。RegisterBundles
メソッド中にブラウザを検出することはできませんか?