When you add a view to your project you need to check the “Create partial view” check box.
Once the partial view is created you can then call the partial view in the main view using the Html.RenderPartial
method as shown in the below code snippet:
<body>
<div>
<% Html.RenderPartial("MyView"); %>
</div>
</body>