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
2010-08-12 07:56:31