Search code examples
c#asp.netasp.net-mvcasp.net-mvc-views

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


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

Thanks


Solution

  • 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.