I want to link a specific style sheet in certain Views in addition to what already gets linked in _Layout.cshtml. For non-Razor, I see using the content place holder. How would I do this for Razor?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The equivalent of content placeholders in Razor are sections. In your _Layout.cshtml:
Then in your content page:
An alternative solution would be to put your styles into ViewBag/ViewData: In your _Layout.cshtml:
And in your content page:
This works because the view page gets executed before the layout. |
||||
|
Surprisingly (to me), asp:ContentPlaceHolder does work. Seems very unrazorish though. I wonder if there's another way? Specifically, you put
in your view. |
|||||
|