My partial view, called _myTestView.cshtml
<div style="border:1px solid red;">
TEST
</div>
I call it like that
<div>
@Html.RenderPartial("_myTestView");
</div>
I get the following run time error
Compiler Error Message: CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments
What am I doing wrong?