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?
|
|
||||
|
|
|
Html.Partial returns a string, Html.RenderPartial calls Write internally, and returns void. The usage (using Razor syntax):
The usage (using WebForms syntax):
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. |
|||||||||||||
|
|
Difference is first one returns an |
|||
|
|
|
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.
|
|||
|
|
|
According to me Because when I use |
|||
|
|
|
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 |
|||
|
|
|
The return type of
This will return the Html string of the View. This is also applicable to |
||||
|
|
