When should I use Html.Displayfor in MVC

后端 未结 2 1836
一生所求
一生所求 2020-11-27 06:02

I am new to MVC and know how to use Html.Displayfor(), but I don\'t know when to use it?

Any idea?

2条回答
  •  攒了一身酷
    2020-11-27 06:15

    I'm extending @Darin's answer.

    Html.DisplayFor(model => model.SomeCollection) will iterate over items in SomeCollection and display the items using DisplayFor() recursively.

提交回复
热议问题