What is difference between Html.Partial and Html.RenderPartial in asp.net mvc? also What is difference between Html.Action and Html.RenderAction in asp.net mvc?

link|improve this question

73% accept rate
feedback

5 Answers

up vote 92 down vote accepted

Html.Partial returns a string, Html.RenderPartial calls Write internally, and returns void.

The usage (using Razor syntax):

@Html.Partial("ViewName")

@{ Html.RenderPartial("ViewName");  }

The usage (using WebForms syntax):

<%: Html.Partial("ViewName") %>

<% Html.RenderPartial("ViewName"); %>

Will do exactly the same.

You can store the output of Html.Partial in a variable, or return it from a function. You cannot do this with Html.RenderPartial. The result will be written to the Response stream during the execution.

The same is true for Html.Action and Html.RenderAction.

link|improve this answer
1  
Do you know why you would use one over the other? – Jason Aug 12 '11 at 21:58
3  
performance-wise it's better to use RenderPartial, as answered here: stackoverflow.com/questions/2729815/… – Vlad Oct 19 '11 at 14:21
feedback

Difference is first one returns an MvcHtmlString but second (Render..) outputs straight to the response.

link|improve this answer
feedback

According to me @html.RenderPartial() has fast execution than @html.Partial() due to RenderPartial give quick response to Output.

Because when I use @html.Partial() ,my website get more time to load compare to @html.RenderPartial()

link|improve this answer
feedback

Internally @Html.Partial calls RenderPartialInternal which is called by @Html.RenderPartial. The difference is that @Html.Partial returns the string created by RenderPartialInteral whereas @Html.RenderPartial does not return the string.

Using reflection we find:
public static MvcHtmlString Partial(this HtmlHelper htmlHelper, string partialViewName, object model, ViewDataDictionary viewData)
{
    MvcHtmlString mvcHtmlString;
    using (StringWriter stringWriter = new StringWriter(CultureInfo.CurrentCulture))
    {
        **htmlHelper.RenderPartialInternal**(partialViewName, viewData, model, stringWriter, ViewEngines.Engines);
        mvcHtmlString = MvcHtmlString.Create(stringWriter.ToString());
    }
    return mvcHtmlString;
}

public static void RenderPartial(this HtmlHelper htmlHelper, string partialViewName)
{
    **htmlHelper.RenderPartialInternal**(partialViewName, htmlHelper.ViewData, null, htmlHelper.ViewContext.Writer, ViewEngines.Engines);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.