我正在使用 MVC4StyleBundle
捆绑一堆 CSS。只有 IE 9 或更低版本才需要一个 CSS。
在我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
?