What is the difference of both statements concerning the section Scripts and script-tag? NOT the content inside the scripts that does not interest me.
@section S
You might want to define sections in you _layout.cshtml file for specific content. It is generally believed that styles belong to and scripts belong before
. Your mileage may vary.
If you just output it will go with all the content and not where you might want it to be.
And if script inside view depends on something (jquery) and in your layout you have
@renderBody()
@renderSection("scripts",required:false)
then you are screwed (-: