NoScriptManager.aspx 722 B

1234567891011121314151617181920212223
  1. <%@ Page Language="C#" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title>Untitled Page</title>
  6. </head>
  7. <body>
  8. <form id="form1" runat="server">
  9. <div>
  10. <asp:UpdatePanel ID="UpdatePanel1" runat="server">
  11. <ContentTemplate>
  12. <fieldset>
  13. <legend>UpdatePanel</legend>
  14. <asp:Label ID="Label1" runat="server" Text="Panel created."></asp:Label><br />
  15. </fieldset>
  16. </ContentTemplate>
  17. </asp:UpdatePanel>
  18. </div>
  19. </form>
  20. </body>
  21. </html>