Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction. can any one please describe the difference
问题 In ASP.NET MVC, what is the difference between: Html.Partial and Html.RenderPartial Html.Action and Html.RenderAction 回答1: Html.Action invokes the controller's action, which means it instantiates the controller entity, calls an action method, which builds a model an returns a view result. Html.Partial uses already created model (or can be called without model at all) to render a specified view. When to use one over the other? If you already have a model and just want to have a reusable view,