DeclarativeMasterPageCS.master 912 B

123456789101112131415161718192021222324252627282930313233
  1. <%@ Master Language="C#" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6. <title>Declarative Master Page Example</title>
  7. <style type="text/css">
  8. body {
  9. font-family: Lucida Sans Unicode;
  10. font-size: 10pt;
  11. }
  12. button {
  13. font-family: tahoma;
  14. font-size: 8pt;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <form id="form1" runat="server">
  20. <div>
  21. <!-- <Snippet1> -->
  22. <asp:ScriptManager ID="ScriptManager1" runat="server" />
  23. Master page content.
  24. <hr />
  25. <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
  26. </asp:ContentPlaceHolder>
  27. <!-- </Snippet1> -->
  28. </div>
  29. </form>
  30. </body>
  31. </html>