最佳答案
这是可行的,因为它返回字符串中部分视图呈现的结果:
@Html.Partial("Path/to/my/partial/view")
但我更喜欢使用 RenderPartial
,似乎我需要写:
@{Html.RenderPartial("Path/to/my/partial/view");}
而不是:
@Html.RenderPartial("Path/to/my/partial/view");
让它工作。错误信息:
Compiler Error Message: CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments
如果有任何更好的方法代替打开代码块 @{...}
只为一个方法调用?