Creating Nested Master Pages in an ASP.NET Web Application

Is it possible to create nested master pages in ASP.NET Web Application projects, how can this be done in ASP.NET Website projects?

I am using Visual Studio 2008 and am working on an ASP.NET web application. When creating the main page, it is not possible to select another main page, which, if available, would allow me to create nested master pages.

Has anyone encountered a similar problem? Is any work around recommended?

Thanks in advance for any help. Greetings.

+2
source share
1 answer

, 2 .NET . , Visual Studio 2005, -. VS 2008.

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="SecondLevelMaster.master.cs" Inherits="SecondLevelMaster" **MasterPageFile="~/RootMaster.master"** %>
+5

Source: https://habr.com/ru/post/1712510/


All Articles