In ASP.NET MVC, what is the difference between:
Html.Partial and Html.RenderPartialHtml.Action and Html.
For "partial" I always use it as follows:
If there's something you need to include in a page that you need to go via the controller (like you would with an Ajax call) then use "Html.RenderPartial".
If you have a 'static' include that isn't linked to a controller per-se and just in the 'shared' folder for example, use "HTML.partial"