a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
<%@ Master Language="C#" %>
|
|
<head runat="server">
|
|
<title>This is the Master Page's title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<asp:contentplaceholder ID="TitlePlaceholder" runat="server">
|
|
<form runat="server">
|
|
This is the master page's heading <br/>
|
|
<asp:Button runat="server" id="foo" Text="Foo" />
|
|
</form>
|
|
</asp:contentplaceholder>
|
|
|
|
</body>
|