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?
|
feedback
|
|
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. | |||||||||
feedback
|
|
Difference is first one returns an | |||
|
feedback
|
|
I found this blog post useful http://devlicio.us/blogs/derik_whittaker/archive/2008/11/24/renderpartial-vs-renderaction.aspx | |||
|
feedback
|
|
According to me Because when I use | |||
|
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.
| |||
|
feedback
|