a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
765 B
Plaintext
25 lines
765 B
Plaintext
<%@ 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>
|
|
|
|
|
|
|