Default.aspx 971 B

1234567891011121314151617181920212223
  1. <%@ Page Language="C#" AutoEventWireup="true" Inherits="Walkthrough._Default" Codebehind="Default.aspx.cs" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.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. <asp:ScriptManager ID="ScriptManager1" runat="server" />
  10. <div>
  11. <asp:UpdatePanel ID="UpdatePanel1" runat="server">
  12. <ContentTemplate>
  13. <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="10000">
  14. </asp:Timer>
  15. <asp:Label ID="Label1" runat="server" Text="Panel not refreshed yet."></asp:Label>
  16. </ContentTemplate>
  17. </asp:UpdatePanel>
  18. </div>
  19. <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
  20. </form>
  21. </body>
  22. </html>