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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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
Master Layout
|
|||
|
|