MasterPage.master 730 B

1234567891011121314151617181920212223242526272829
  1. <%-- <Snippet2> --%>
  2. <%@ Master Language="C#" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  4. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <script runat="server">
  6. </script>
  7. <html xmlns="http://www.w3.org/1999/xhtml" >
  8. <head runat="server">
  9. <title>UpdatePanel in Master Pages</title>
  10. </head>
  11. <body>
  12. <form id="form1" runat="server">
  13. <div>
  14. Master Page<br />
  15. <hr />
  16. <asp:ScriptManager ID="ScriptManager1" runat="server">
  17. </asp:ScriptManager>
  18. <br />
  19. <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
  20. </asp:contentplaceholder>
  21. </div>
  22. </form>
  23. </body>
  24. </html>
  25. <%-- </Snippet2> --%>