I have a project using ASP.NET Boilerplate. I want to add more functionality by using jQuery.
I try to write a simple code such as (below) to the end of a page (such as
Here is the process to proper execution; check @RenderSection and @section in below files
_Layout.cshtml
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@RenderBody()
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
view.cshtml
@section Scripts {
}