Welcome to mirror list, hosted at ThFree Co, Russian Federation.

master.master « title « masterpages « standalone « Test « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74c291d2d38093fae847ea45406d677edccbb788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%@ 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>