What is strongly-typed View in ASP.NET MVC

后端 未结 3 451
忘了有多久
忘了有多久 2020-12-02 18:32

What is strongly-typed View in ASP.NET MVC?

3条回答
  •  生来不讨喜
    2020-12-02 19:05

    Strongly typed views are used for rendering specific types of model objects, instead of using the general ViewData structure. By specifying the type of data, you get access to IntelliSense for the model class.

提交回复
热议问题