Я использую MVC для разработки веб-приложения, и мне нужно использовать вложенные мастер-страницы на моем сайте, чтобы делиться визуальными компонентами.
У меня есть две мастер-страницы и страница контента:
- Parent.master
- Child.master
- Content.aspx
Я хочу сослаться на ContentPlaceHolder, размещенный в верхнем Parent.master из представления Content, в котором Child.master имеет значение MasterPage. Кажется, что я могу использовать ContentPlaceHolders от прямого родителя, но не от косвенного родителя. Давайте посмотрим с образцом:
Parent.master
<%@ Master Language="C#"
Inherits="System.Web.Mvc.ViewMasterPage"%>
<HTML>
<head runat="server">
<title>
<asp:contentplaceholder id="Title" runat="server" />
</title>
</head>
<body>
<asp:contentplaceholder id="Body" runat="server" />
</body>
<HTML>
Child.Master
<%@ Master Language="C#" MasterPageFile="~/Views/Shared/Parent.master"
Inherits="System.Web.Mvc.ViewMasterPage"%>
<asp:Content ID="BodyContent" ContentPlaceHolderID="Body" runat="server">
<asp:contentplaceholder id="Body1" runat="server" />
<asp:contentplaceholder id="Body2" runat="server" />
</asp:Content>
Content.aspx
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Child.master"
Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="TitleContent" ContentPlaceHolderID="Title" runat="server">
<!-- Placed to the top parent Master page (does not work) -->
The page title
</asp:Content>
<asp:Content ID="Body1Content" ContentPlaceHolderID="Body1" runat="server">
<!-- Placed in the direct parent Master page (Works) -->
Body content 1
</asp:Content>
<asp:Content ID="Body2Content ContentPlaceHolderID="Body2" runat="server">
<!-- Placed in the direct parent Master page (Works) -->
Body content 2
</asp:Content>
В результате я вижу Body content 1
и Body content 2
на своей странице, но не page title
.