Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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>