In this article, I describe Different between Partial and RenderPartial in asp.net mvc. Both of these helper methods are used to render a partial views.
The return type of RenderPartial is Void, where as Partial return MvcHtmlString.
InvokePartial View(in Razor View):
@Html.Partial("Partial viewName", Model)
InvokePartial View(in Aspx View):
<%: Html.Partial("Partial viewName", Model)%>
InvokeRenderPartial View(In Razor View):
{Html.RenderPartial("Partial viewName", Model);}
InvokeRenderPartial View(in Aspx View):
<% Html. RenderPartial("Partial view Name", Model); %>
Example
@Html.Partial("_Product", item)
{Html.RenderPartial("_Product", item);}
The main difference is that RenderPartial() returns void and the output will be written directly to the output stream, where as Partial() returns MvcHtmlString which can be assigned to a variable and manipulate it if required. So when there is a need to assign the output to a variable for manipulating it, then use Partial() else use RenderPartial(). RenderPartial() is better performance over partial().
Post your comments / questions
Recent Article
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
- ImportError: Missing optional dependency 'xlrd' | How tot Convert xls to xlsx | Python
Related Article