Reputation: 4040
What is the meaning of "strongly typed view" in ASP.Net MVC.
Upvotes: 1
Views: 473
Reputation: 17941
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
Upvotes: 2