Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction

后端 未结 13 797
感动是毒
感动是毒 2020-11-22 04:03

In ASP.NET MVC, what is the difference between:

  • Html.Partial and Html.RenderPartial
  • Html.Action and Html.
13条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 04:20

    Html.Partial returns a String. Html.RenderPartial calls Write internally and returns void.

    The basic usage is:

    // Razor syntax
    @Html.Partial("ViewName")
    @{ Html.RenderPartial("ViewName");  }
    
    // WebView syntax
    <%: Html.Partial("ViewName") %>
    <% Html.RenderPartial("ViewName"); %>
    

    In the snippet above, both calls will yield the same result.

    While one can store the output of Html.Partial in a variable or return it from a method, one cannot do this with Html.RenderPartial.

    The result will be written to the Response stream during execution/evaluation.

    This also applies to Html.Action and Html.RenderAction.

提交回复
热议问题