Using the Timer Control : Timer « Ajax « ASP.NET Tutorial






<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Timer Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:ScriptManager ID="ScriptManager1" runat="server" />

    <asp:Timer ID="Timer1" Interval="2000" runat="server" />

    The time is <%= DateTime.Now.ToString("T") %>

    </div>
    </form>
</body>
</html>








20.10.Timer
20.10.1.Using the Timer Control
20.10.2.Refreshing the control content using Timer control.