1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<%@ Master Language="C#" MasterPageFile="My.master"%>
<asp:Content ID="Derived" ContentPlaceHolderID="Main" runat="server">
<script runat="server">
public string MasterTypeMethod ()
{
return "MasterTypeMethod";
}
</script>
<asp:contentplaceholder id="Header" runat="server">
Derived header text
</asp:contentplaceholder>
<asp:contentplaceholder id="Main" runat="server">
Derived main text
</asp:contentplaceholder>
<asp:contentplaceholder id="Dynamic" runat="server">
Dirived dynamic text
</asp:contentplaceholder>
Derived master page text
</asp:Content>
|