内容控件必须是内容页面中的*控件或引用母版页的嵌套母版页

时间:2022-08-11 15:55:24

I want to use nested master page so i create the following master page :

我想使用嵌套母版页,所以我创建了以下母版页:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="test.master.cs" Inherits="DocumentFlowUI.test" MasterPageFile="~/MasterPage2.master" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
            <asp:Button ID="Button1" runat="server" Text="Button" />
        </asp:ContentPlaceHolder>
    </div>
    </form>
</body>
</html>

and i create the following page to use that master page :

我创建以下页面以使用该母版页:

<%@ Page Title="" Language="C#" MasterPageFile="~/test.Master" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="DocumentFlowUI.WebForm4" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</asp:Content>

I get the following error :

我收到以下错误:

Content controls have to be top-level controls in a content page or a nested master page that references a master page

内容控件必须是内容页面中的*控件或引用母版页的嵌套母版页

2 个解决方案

#1


9  

The HTML-code in your nested masterpage must be wrapped with an asp:content-tag with a contentplaceholderid from the "master" masterpage.

嵌套母版页中的HTML代码必须使用带有来自“master”母版页的contentplaceholderid的asp:content-tag包装。

#2


4  

Just to demonstrate Erik's point:

只是为了证明Erik的观点:

Parent masterpage:

<asp:ContentPlaceHolder ID="head" runat="server" />

Child masterpage:

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
    <asp:ContentPlaceHolder ID="head" runat="server" />
</asp:Content>

Page:

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
    <!-- content -->
</asp:Content>

#1


9  

The HTML-code in your nested masterpage must be wrapped with an asp:content-tag with a contentplaceholderid from the "master" masterpage.

嵌套母版页中的HTML代码必须使用带有来自“master”母版页的contentplaceholderid的asp:content-tag包装。

#2


4  

Just to demonstrate Erik's point:

只是为了证明Erik的观点:

Parent masterpage:

<asp:ContentPlaceHolder ID="head" runat="server" />

Child masterpage:

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
    <asp:ContentPlaceHolder ID="head" runat="server" />
</asp:Content>

Page:

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
    <!-- content -->
</asp:Content>