DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Including Javascript In MVC 3 View
// In the head section of Master page
@RenderSection("Script");
// In View
@section Script
{
// Showing jQuery intellisense but not rendering it
@if (false) { <script src="~/Scripts/jquery-1.5.1-vsdoc.js" type="text/javascript"></script> }
<script type="text/javascript">
</script>
}





