Difference between Html.RenderAction and Html.Action

前端 未结 2 1797
萌比男神i
萌比男神i 2020-11-28 12:44

Does anybody know what\'s the difference between Html.RenderAction and Html.Action?

2条回答
  •  半阙折子戏
    2020-11-28 13:10

    Html.Action() – Outputs string

    Html.RenderAction() – Renders directly to response stream

    If the action returns a large amount of HTML, then rendering directly to the response stream provides better performance than outputting a string.

提交回复
热议问题