开发者

What are the differences between editor templates and partial views?

I am simply looking for how these two are different and what are their pros and cons?

It seems you 开发者_如何转开发can do all with partial views that you can do with templates.


If you are referring to EditorTemplates (rather than inline timeplates), then there are some big differences. First, partial views require you to specify your view when you use them, while templates work on the type of the data object.

Second, because templates work on data types, then when you make a change to the template, it changes it everywhere that type is used, not just where the partial view is used (this can be a disadvantage as well in some cases).

Third, templates are passed additional information that partial views are not, in particular you recieve Model Metadata, such as that created by attributes.


if you mean "inline helpers", they are simply an easier way of building the equivalent of HtmlHelper extension methods - but they are only for use in the specific view. partial views, on the other hand, can have more logic behind them (via their controller) without violating MVC and they can be easily reused from multiple views

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜