Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

6 Answers

up vote 285 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.

share|improve this answer
11  
Do you know why you would use one over the other? – Jason Aug 12 '11 at 21:58
15  
performance-wise it's better to use RenderPartial, as answered here: stackoverflow.com/questions/2729815/… – Vlad Oct 19 '11 at 14:21
2  
Thanks for the bit about storing result into a variable. This is the reason to use Partial or Action over the Render counterpart. – David Kassa Mar 4 at 15:14

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

share|improve this answer

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);
}
share|improve this answer

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()

share|improve this answer

More about the question:

"When Html.RenderPartial() is called with just the name of the partial view, ASP.NET MVC will pass to the partial view the same Model and ViewData dictionary objects used by the calling view template." “NerdDinner” from Professional ASP.NET MVC 1.0

share|improve this answer

The return type of Html.RenderAction is void that means it directly render the responses in View where return type of Html.Action is MvcHtmlString you can catch its render view in controller and modify it also by using following method

protected string RenderPartialViewToString(string viewName, object model)
    {
        if (string.IsNullOrEmpty(viewName))
            viewName = ControllerContext.RouteData.GetRequiredString("action");

        ViewData.Model = model;

        using (StringWriter sw = new StringWriter())
        {
            ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
            ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
            viewResult.View.Render(viewContext, sw);
            return sw.GetStringBuilder().ToString();
        }
    }

This will return the Html string of the View.

This is also applicable to Html.Partial and Html.RenderPartial

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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