So I have been reading about tags and how they get loaded. It seems that unless JavaScript is dynamically injected it is loaded synchronously.
SOURCE: http://www.sitepoint.com/a-detailed-breakdown-of-the-script-tag/
That being said I was wondering whether ASP .NET "dynamically injects" JavaScript. Are there specific instances where ASP .NET would load JavaScript asynchronously?
Response.Write("<script src=\"\"></script>");in ASP.NET it will function the same as if you were just using plain old HTML. If you're worried about async, use RequireJS<script defer src=...>or<script async src=-...>