Reputation: 3219
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
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