Can I set the media attribute in a link tag using the Telerik MVC Extensions StyleSheetRegistrar ?
<%= Html.Telerik().StyleSheetRegistrar() .DefaultGroup(group => group .Add("telerik.common.css") .Add("telerik." + ConfigurationManager.AppSettings["Telerik Theme"].ToLower() + ".min.css")) %>
I want to add media="screen,handheld" to all the style links created above.
source share