Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction. can any one please describe the difference

纵然是瞬间 提交于 2019-12-01 03:07:10

问题


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, opt to Html.Partial. If you see that some piece deserves its own model and action, maybe it makes sense to use Html.Action.

This question is discussed in much greater details in this article, and what you see above is basically an excerpt from it.



来源:https://stackoverflow.com/questions/30257563/html-partial-vs-html-renderpartial-html-action-vs-html-renderaction-can-any-o

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!