I'm trying to figure out the proper razor syntax to get a js file for a particular *.cshtml to be in the head tag along with all the other include files that are defined in _Layout.cshtml

Thank you, Stephen

link|improve this question

3  
You should also consider putting the js at the bottom of the page instead of in the head section. – Mattias Jakobsson Nov 30 '10 at 8:49
Only issue I found with the sample code is that the @section "JavaScript" need not be enclosed in quotes. – SPATEN Nov 30 '10 at 13:44
2  
One more thing: if this is a JavaScript tag, be careful about the usage, I needed to use the END Tag of the script element to get this to run correctly. <script type="text/javascript" src="@Url.Content("~/Scripts/RDA.js")"></script>; – SPATEN Nov 30 '10 at 14:00
@Mattias Jakobsson - Not always. That depends on a specific case. – Dimskiy Apr 26 '11 at 17:41
feedback

1 Answer

up vote 122 down vote accepted

You can use Named Sections.

_Layout.cshtml

<head>
    <script type="text/javascript" src="@Url.Content("/Scripts/jquery-1.6.2.min.js)">
    @RenderSection("JavaScript", required: false)
</head>

_SomeView.cshtml

@section JavaScript
{
   <script type="text/javascript" src="@Url.Content("/Scripts/SomeScript.js")"></script>
   <script type="text/javascript" src="@Url.Content("/Scripts/AnotherScript.js")"></script>
}
link|improve this answer
1  
Yes, I was looking at WebPageBase and had guessed that that might be the answer, but didn't quite know the proper syntax. Can you recommended a reference guide for the MVC 3? Regards.. – SPATEN Nov 30 '10 at 13:15
6  
Ha! I WISH there was a reference guide to both MVC 3 and Razor syntax. I got the above from the Gu's blog. The best reference for MVC 3 is probably the release notes. – RPM1984 Nov 30 '10 at 21:02
Oh and good tip w.r.t. the close tag for the <script> tag - didn't know that (haven't tried named sections with JS yet). now i (and others) will know – RPM1984 Nov 30 '10 at 22:26
3  
FYI: Javascript should be rendered right before the </body> tag instead of in the head tag. This is so that it wouldn't prevent parallel downloads by the browser. See developer.yahoo.com/performance/rules.html – Peter Dec 13 '10 at 12:01
2  
@Peter - yes, i know - but i was simply addressing the answer (JS in head tag). – RPM1984 Dec 13 '10 at 22:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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