Possible Duplicates:
Are there nested master pages in ASP.NET MVC?
Creating nested master pages in ASP.NET Web ApplicationDuplicate
Can you have a master view in ASP.NET MVC that inherits from another Master View?
My reasoning is this: I have some pages that need to simply inherit from a very basic masterview that contains my header, footer and nothing else.
However, I also have a good number of pages that not only need that, but they also need border images and a container surrounding the content. Can I have a secondary master-view that inherits from the first, basic master-view?
This way I could have:
Basic Master View - Contains header, footer nothing more
Second Master View - Inherits Basic Master View as well as has its own content (some pages need)
Some views just inherit basic masterview, like our landing page
Some view inherit from secondary which should contain Basic Master view as well.
Is it possible to have multiple levels of inheritance with masterviews?