母版页内容未显示在儿童中

时间:2013-10-10 09:07:23

标签: asp.net master-pages site.master

我知道我在这个问题上缺少一些东西 但我无法弄明白 我有这个母版页:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Mains.master.cs" Inherits="Sportsstop.Mains" %>

<!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>Sports Stop</title>
<asp:ContentPlaceHolder ID="head" runat="server">

</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div>
    <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>

N这个子页面应该与上面的母版页合并:

<%@ Page Title="" Language="C#" MasterPageFile="~/Mains.Master" AutoEventWireup="true" CodeBehind="Home.aspx.cs" Inherits="Sportsstop.Home" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server" >

</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
</asp:Content>

1 个答案:

答案 0 :(得分:6)

您的文本框应位于ContentPlaceholder1内的子页面中。我认为主页中的那个被忽略了。

如果要在母版页中使用TextBox,则不能在ContentPlaceholder

将占位符视为注册子页面内容的地方