Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what exactly is strongly typed View data in Asp.Net MVC

What is meant by "strongly typed view data" in Asp.Net MVC ?

Thanks

like image 435
Asad Avatar asked Feb 02 '10 19:02

Asad


1 Answers

A strongly typed view in ASP.NET MVC inherits from System.Web.Mvc.ViewPage<T> and contains a Model property that is of type specified by T. This allows intellisense to work in your views.

like image 54
Marek Avatar answered Sep 27 '22 17:09

Marek