Ok I may be way off the mark here as i have only just started using MVC, but this is how i achieved it....
My master Page / razor layout page has a call to to my "pageStyleBuilder" method in the Head.
<head>
<meta content="en-gb" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>@ViewBag.Title</title>
@Html.Raw(MyWebSite.HtmlHelpers.PublicViewHelpers.PageStyleBuilder(@ViewBag.StyleSheet))
The "Page style Builder" method looks like this.
public static string PageStyleBuilder(string StyleUrl)
{
if (StyleUrl != null)
{
TagBuilder newStyleSheet = new TagBuilder("link");
newStyleSheet.MergeAttribute("href", StyleUrl);
newStyleSheet.MergeAttribute("rel", "stylesheet");
newStyleSheet.MergeAttribute("type", "text/css");
return newStyleSheet.ToString(TagRenderMode.SelfClosing);
}else{
return null;
}
}
notice its not a Html Helper (No extension) - I found that using the method as an extension created problems ...... don't know why exactly something to do with using the ViewBag to pass it data, probably because the ViewBag is dynamic.
Then in each view that requires an additional styleSheet, I pass the file location into the ViewBag.
@{
ViewBag.Title = "My Website - Home";
ViewBag.StyleSheet = Url.Content("~/Content/Home.css");
}
If trying to add multiple style sheets you can be a bit naughty and add a little code to your view (haven't quite got this into its own helper yet)
Code for layout view:
@{
string allStyleSheets = string.Empty;
string[] styleSheets = ViewBag.StyleSheets;
foreach(var ss in styleSheets)
{
allStyleSheets += Html.Raw(MyWebSite.HtmlHelpers.PublicViewHelpers.PageStyleBuilder(ss)) + "\r\n";
}
}
@Html.Raw(@allStyleSheets)
Code for page View:
@{
ViewBag.Title = "My Website - Home";
ViewBag.StyleSheets = new string[2];
ViewBag.StyleSheets[0] = Url.Content("~/Content/Home.css");
ViewBag.StyleSheets[1] = Url.Content("~/Content/Home.css");
}
For a partial view Don't use the ViewBag you'll get a reflection exception, pass the data into a static class.