I am working with MVC v4. I have a \'_BootstrapLayout\' page which defines all the twitter bootstrap etc stuff, A main page which defines the site layout, navbar etc, and
You'll need to redefine the section in _MainPage.cshtml.
_MainPage.cshtml
_BootstrapLayout.cshtml
@RenderSection("scripts", false)
@section scripts { @RenderSection("scripts", false) }
Index.cshtml
@section scripts { }