mvc render section code example
Example: render section asp.net mvc layout
<html>
<body>
@RenderBody()
@RenderSection("scripts", required: false)
</body>
</html>
@section scripts {
<script type="text/javascript">alert('hello');</script>
}