Paste Into ASPX Source
Paste Into ASPX.CS Code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="timer.aspx.cs" Inherits="timer" %>
<!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 id="Head1" runat="server">
<title>ASP.NET EXAMPLES | Ajax Extensions | Ajax Examples | Ajax Timer control </title>
</head>
<body style="font-family:Tahoma; font-size:14px;">
<form id="form1" runat="server">
<center>
<div style="border: 2px; font-size: 12px; border-color: Black; border-style: solid;
color: White; background-color: Red; font-weight: bold; font-family: Tahoma">
By : <a href="http://asp-examples.blogspot.com/" style="color: Yellow" target="_search">
asp-examples</a> (Click to get more Asp.net Examples)
<br />
Author : Akash Parmar<br />
Company Name : Soft-Tech Designs n Development<br />
We Design your Dreams - Develop your Life...
</div>
<div>
<%--Its required to place ScriptManager within the form tag whenever you use any Ajax Controls...--%>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div>
<h4>
ASP.NET Ajax Timer control...</h4>
<h4>
Countdown Timer using Ajax Timer Control...
</h4>
</div>
<div style="border: 2px; height:100px; border-color: Black; border-style: solid">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Label ID="Label1" runat="server" Text="10" Font-Size="50pt"
Font-Bold="True" ForeColor="#FF3300"></asp:Label>
<asp:Label ID="Label2" runat="server" Font-Size="30pt"
Text="seconds remaining...."></asp:Label>
<asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick">
</asp:Timer>
<br />
<asp:Label ID="Label3" runat="server" Font-Size="20pt" Font-Bold="True"
ForeColor="#FF3300"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
</center>
</form>
</body>
</html>
Paste Into ASPX.CS Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class timer : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Timer1_Tick(object sender, EventArgs e)
{
if (Convert.ToInt32(Label1.Text) > 1)
{
Label1.Text = Convert.ToString(Convert.ToInt32(Label1.Text) - 1);
}
else
{
Timer1.Enabled = false;
Label3.Text = "Time Up..!";
Label1.Visible = false;
Label2.Visible = false;
}
}
}