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 a layout with an @RenderSection("scripts") section and I have a bundle that would need to be included in this section for some views. I thought that just doing this in the view would work, but it's not rendering the scripts.

@section scripts {
    @Scripts.Render("~/bundles/myBundle")  
}

In my view, how can I include a bundle to the scripts section?

Layout

@Scripts.Render("~/bundles/jquery", "~/bundles/scripts")
@RenderSection("scripts", required: false)

View

@section scripts {
    @Scripts.Render("~/bundles/movie")  
}
share|improve this question
This should definitely work and is supported. I would check for typos in the bundle name - e.g. makes sure its ~/bundles/movie and not ~/scripts/movie in your BundleConfig. – Mrchief Feb 5 at 20:34

2 Answers

up vote -2 down vote accepted

Why mix the rendersection with bundling? If you choose to down the route of bundling, you can simply put your scripts in .JS file ,put it in their own bundle if you like and call that bundle on your view. For ex:

     bundles.Add(new ScriptBundle("~/bundles/myscripts").Include(
                    "~/Scripts/myscript1.js",
                    "~/Scripts/myscript2.js")); 

then view will have the following:

    @Scripts.Render("~/bundles/myscripts")   

Also make sure your Web.config has compilation debug set to false like below:

  <compilation debug="false" />            

it makes sure the scripts are bundled and minified.

share|improve this answer
Because I need the bundle to load after the jquery bundle in the layout. By just rendering the bundle like above in my view it will render before the jquery bundle. – bflemi3 Dec 1 '12 at 18:37
Usually I put the jQuery bundle right at the top unlike the default at the bottom of the page and everything works fine. checkout this MVC music store code github.com/tekpub/mvcmusic/tree/master/MvcMusicStore – Yogiraj Dec 1 '12 at 20:15
You may not want to render everything on every page. Sectioning gives you control of that. Putting everything in head is a horrible solution (jQuery may be an exception). – Mrchief Feb 5 at 20:27

Try below mentioned solution inside the View.

View

@section Scripts{
    <script src="@System.Web.Optimization.BundleTable.Bundles.ResolveBundleUrl("~/bundles/movie")"></script>
}
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.