Injecting content into specific sections from a partial view ASP.NET MVC 3 with Razor View Engine

Sections don’t work in partial views and that’s by design. You may use some custom helpers to achieve similar behavior, but honestly it’s the view’s responsibility to include the necessary scripts, not the partial’s responsibility. I would recommend using the @scripts section of the main view to do that and not have the partials worry about scripts.

Leave a Comment