| 1234567891011121314151617181920212223 |
- <%@ Page Language="C#" AutoEventWireup="true" Inherits="Walkthrough._Default" Codebehind="Default.aspx.cs" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Untitled Page</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <asp:ScriptManager ID="ScriptManager1" runat="server" />
- <div>
- <asp:UpdatePanel ID="UpdatePanel1" runat="server">
- <ContentTemplate>
- <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="10000">
- </asp:Timer>
- <asp:Label ID="Label1" runat="server" Text="Panel not refreshed yet."></asp:Label>
- </ContentTemplate>
- </asp:UpdatePanel>
- </div>
- <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
- </form>
- </body>
- </html>
|