Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have MVC app using traditional aspx views not Razor. I have a bunch of blocks of js files references in Master file. I ideally want to move them somewhere else so I can just reference them will just one line in the master file. How can this be achieved?

share|improve this question

1 Answer

Create a partial view (I will call mine MyPartialViewWithScripts) and place it in your shared directory. In this partial view, list out all of the javascript files that you need/want to display in the master layout. Then in your master layout call

Partial View

<script type="text/javascript" src="PathToJSfile.js"></script>
<script type="text/javascript" src="PathToJSfile2.js"></script>

Master Layout

<html><head>
<% Html.RenderPartial("MyPartialViewWithScripts")%>
</head>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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