Niraj Choubey
Niraj Choubey

Reputation: 4040

meaning of "strongly typed view"

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

Upvotes: 1

Views: 473

Answers (1)

ajay_whiz
ajay_whiz

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

Related Questions