我的部分视图,名为_myTestView.cshtml
<div style="border:1px solid red;">
TEST
</div>
我称之为
<div>
@Html.RenderPartial("_myTestView");
</div>
我收到以下运行时错误
编译器错误消息:CS1502:最佳重载方法匹配 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' 有一些无效的论点
我做错了什么?
答案 0 :(得分:2)
您不在代码块中,因此不要使用.RenderPartial
只需使用.Partial
即可摆脱;
<div>
@Html.Partial("_myTestView")
</div>
答案 1 :(得分:1)
将其放入代码块
@{Html.RenderPartial("_myTestView");}