I thought using @Html.Partial calls other views on the server side, BEFORE passing the page to the user's browser...not asynchronously.
I have some very tiny views that are called in many views, example:
Logo.cshtml:
<div ="logo">
<h2>This is my logo</h2>
<img src="logo.jpg"/>
</div>
Wouldn't it be inefficient to create a async GET request just for that small partial? Is there a way to reuse html server side, before passing the rendered page to the user?