What is strongly-typed View in ASP.NET MVC?
|
It is an aspx page that derives from
where as if your aspx page derived from
or even worse:
and there's no compile time safety in such code. Notice also that there's the |
||||
|
|
|
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. |
|||
|
|
It's a view which specifies the type of the object passed to it as its model - so instead of a view that inherits from |
|||
|
|