vote up 6 vote down star
6

I'm using ASP.NET MVC and I have a partial control that needs a particular CSS & JS file included. Is there a way to make the parent page render the script and link tags in the 'head' section of the page, rather than just rendering them inline in the partial contol?

To clarify the control that I want to include the files from is being rendered from a View with Html.RenderPartial and so cannot have server-side content controls on it. I want to be able to include the files in the html head section so as to avoid validation issues.

flag

76% accept rate
Not really specific to mvc, but most web frameworks, but a good question :) – leppie Dec 16 '08 at 21:43

7 Answers

vote up 4 vote down

If I have requirements for CSS/Javascript in a partial view, I simply make sure that any page that may include the partial view, either directly or as content retrieved from AJAX, has the CSS/Javascript included in it's headers. If the page has a master page, I a content placeholder in the master page header and populate it in the child page. To get intellisense in the partial view, I add the CSS/Javascript includes in the partial view but wrapped with an if (false) code block so they are not included at runtime.

<% if (false) { %>
   <link href=...
   <script type=...
<% } %>
link|flag
Thank you... this was driving me nuts. – cdmckay Jul 7 at 6:46
vote up 1 vote down

Todd's answer works fine, provided you have only one instance of the control and there's no other code that wants to "inject" anything in the tag for the master page. Unfortunately, you can rarely rely on this.

I would suggest you include the all the css files you need in the master page. There will be a small perf hit on the first visit, but after that the browser caching will kick in. You can (and should) split your styles in multiple .css files to benefit from HTTP agents that can downoad them concurently. As for the .js files, I'd suggest to implement something close to the google.load() mechanism, that would allow you to load scripts on demand.

link|flag
vote up 0 vote down

If you willing to break conformance, you can just emit a style definition with the partial content. This tends to work in most recent browsers.

link|flag
Yeah it does, but that's what I'm trying to avoid :) – Glenn Slaven Dec 16 '08 at 22:38
vote up 0 vote down

Depending on how much CSS / JS your control needs, the safest route may be just to include the extra styling in your main CSS files. Saves an extra trip to the server, and it should all be cached by the client. I know this kills the self-containedness (to coin a phrase) of the control, but it may be your best bet.

link|flag
vote up 0 vote down

Sorry, you cannot from a partial control refer "up" to something in the parent page (or add anything). The only communication is "down" from the parent to the partial by passing the ViewData / Model.

You are describing functionality of a master page and a normal page using the content place holders, but partial controls do not function like that.

But, if I am not mistaken, you can just physically add the script or link tags to the actual parent page that you render the partial page on - the CSS should be used by the partial page as well.

link|flag
vote up 0 vote down

before the render partial line, call @import as follows:

<style type="text/css"> @import url(cssPath.css); </style>

Hope this helps.

Just came across this option on Haached and remembered your q

use the header's Content placeholder on the partial view and just add the css to that form normally

see http://haacked.com/archive/2009/01/27/controls-collection-cannot-be-modified-issue-with-asp.net-mvc-rc1.aspx

link|flag
vote up -1 vote down

Include a place holder in your master template:

<head runat="server>
    <asp:ContentPlaceHolder ID="head" runat="server" />
</head>

and in your control

<asp:Content ID="head" runat="server">
    <script src="something.js"></script>
</asp:Content>
link|flag
1  
Unfortunately you can't put content controls on a partial view, they can only go on pages that reference the master page – Glenn Slaven Dec 16 '08 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.