vote up 2 vote down star

Is it possible to create nested master pages in an ASP.NET Web Application projects as one can do in ASP.NET Website projects?

I am using Visual Studio 2008 and working on an ASP.NET Web Application. While creating a master page there is no option to choose another master page which if was available would have allowed me to create nested master pages.

Have anyone faced similar issue? Is any sort of work around recommended?

Thanks in advance for any help. Cheers.

flag

80% accept rate

1 Answer

vote up 5 vote down check

Yes, from version 2 of the .NET framework, nested master pages have been supported. One caveat is that you won't get design time support in Visual Studio 2005 if you have nested master pages. This isn't an issue in VS 2008.

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="SecondLevelMaster.master.cs" Inherits="SecondLevelMaster" **MasterPageFile="~/RootMaster.master"** %>
link|flag
@Andy: I am referring to availability of nested master pages in ASP.NET Web Application project type as against ASP.NET Websites. Are you referring to Web App projects? – Nahom Tijnam Jan 14 at 10:32
Yes, this will work in either type of project, howver the masterpagefile property will have to be added manually in the web application project. – Andy Rose Jan 14 at 10:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.