加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – RenderAction差异

发布时间:2020-12-15 08:01:07 所属栏目:百科 来源:网络整理
导读:为什么这段代码是正确的: @{ Html.RenderAction("PostImagesForPost","BlogPost",new { id = Model.ID }); } 而这段代码 @Html.RenderAction("PostImagesForPost",new { id = Model.ID }) 通过此错误消息: Compiler Error Message: CS1502: The best overl
为什么这段代码是正确的:
@{
   Html.RenderAction("PostImagesForPost","BlogPost",new { id = Model.ID });
  }

而这段代码

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

通过此错误消息:

Compiler Error Message: CS1502: The best overloaded method match for ‘System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)’ has some invalid arguments

为什么使用'{”}’这么重要?

谢谢

解决方法

必须在脚本块中调用Html.RenderAction,并且无法在标记中调用.

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

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

有关Action和RenderAction的差异,请参见此处:

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读