What is meant by "strongly typed view data" in Asp.Net MVC ?
Thanks
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.