| 123456789101112131415161718192021222324252627282930313233 |
- <%@ Master Language="C#" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Declarative Master Page Example</title>
- <style type="text/css">
- body {
- font-family: Lucida Sans Unicode;
- font-size: 10pt;
- }
- button {
- font-family: tahoma;
- font-size: 8pt;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <!-- <Snippet1> -->
- <asp:ScriptManager ID="ScriptManager1" runat="server" />
- Master page content.
- <hr />
- <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
- </asp:ContentPlaceHolder>
- <!-- </Snippet1> -->
- </div>
- </form>
- </body>
- </html>
|