MRG
MRG

Reputation: 3219

Difference between Master Page and MVC View Master page

Please check below screen shot. What is main difference between Master Page and MVC View Master page.

When I should use Master page and when I should use MVC View Master page.

Thanks.

alt text http://mahingupta.com/mahingupta/public/img/MsaterPage.png

Upvotes: 1

Views: 1476

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038830

The difference is the base class. In an ASP.NET MVC application you should use MVC View Master Page which derives from ViewMasterPage and you have access to helpers and it can be strongly typed to a model.

Upvotes: 2

Related Questions