I have a partial view (.ascx) that should include its own CSS file as it's used in multiple other views. How do I inject a stylesheet in the page server-side, i.e. without using JavaScript?
feedback
|
|
Dario - due to using this for partialviews, you're going to always have the problem that the the main problem that you may be aluding to is the fact that you can't put To this end, I've created a little helper method that does the basic grunt work to put the css file into the head section automatically. edit - (as per Omu's js suggestion) this is a nice little halfway house:
usage:
or:
worth a back-pocket approach if all else fails. it may also be possible to adapt the logic above to hit an actionfilter and add the css to the reponse headers etc.., rather than outputting the js string. | ||||
feedback
|
|
Is there a reason you cannot just put the stylesheet in the main view page? Unless it is extremely large, it should not cause your page to load significantly slower when not being used, especially after compression. Furthermore, if the partial view is being retrieved by ajax, you will end up re-downloading the css file multiple times (depending on the browser's caching). | |||
feedback
|
|
I'm not an ASP.NET or MVC expert, but I am currently working on a project with it. Would it be possible to include something like this in the head of your master page?
Then somehow get your CSS into the content placeholder?
It looks like you'd have to do this from the calling page, which would introduce duplication of code. I'm not sure how to get around that. Maybe it could it be done with an HTML helper. | |||
feedback
|
|
why not put the link tag in your partial view
| |||||
feedback
|
|
A place I worked had a site with a lot of conditional partial views, which could and would change from time to time as new things were added to the application. The best way we found was to use naming conventions - naming the partial view, stylesheet and script the same (except extension, of course). We added one or more stylesheets, scripts and partial views to the page's view model. We then used a custom HTML helper to loop through the relevant array in each content section and insert the required content. The pain was having to manage three or more files for each component, but at least we were able to reduce the amount of maintenance in the hosting pages. Never did resolve the problem of putting a partial view inside a partial view, though. | |||
|
feedback
|