views:

40

answers:

1

What is the meaning of "strongly typed view" in ASP.Net MVC.

+2  A: 

The type you return from the controller should match the type of your view.

e.g if your view Inherits="System.Web.Mvc.ViewPage<MyModel>" then your controller should return MyModel

ajay_whiz