RenderAction的差异

为什么这段代码是正确的:

 @{
   Html.RenderAction("PostImagesForPost", "BlogPost", new { id = Model.ID });
  }

和这个代码

 @Html.RenderAction("PostImagesForPost", "BlogPost", new { id = Model.ID })

通过这个错误信息:

编译器错误消息:CS1502:'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)'的最佳重载方法匹配有一些无效参数

为什么使用'{''''这么重要?

谢谢


Html.RenderAction必须在脚本块中调用,不能在标记中调用。

作为标记的替代方法,您可以使用:

@Html.Action("PostImagesForPost", "BlogPost", new { id = Model.ID })

有关ActionRenderAction的差异,请参阅此处:

http://haacked.com/archive/2009/11/18/aspnetmvc2-render-action.aspx/

链接地址: http://www.djcxy.com/p/78259.html

上一篇: RenderAction differences

下一篇: lazy and why to use them in django?