Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / C#

Creating Serverside Clock Control Using ASP.NET Ajax and C#

Rate me:
Please Sign up or sign in to vote.
4.29/5 (12 votes)
2 Jun 2008GPL33 min read 94.1K   2.3K   30   5
Demonstration of Timer Control and updata panel to fire timed server events

Introduction

In this article, we will learn how to use Timer and Updatepanel controls of ASP.NET inside Custom Control to create other wrapper controls.

Prerequisite

To use this, you need to have atleast .NET Framework 2.0 and ASP.NET AJAX Extension Controls.

Background

Using Timer, we can repeat any set of commands on a timely basis. Using Update panel, we can process our request in asynchronous mode. So to demonstrate this, I will show you a simple Server Side Clock Control. Where I will put a set of instructions on Tick event of Timer, then will wrap it inside an Updatepanel. And at every second, the clock will refresh itself.

Assumptions

I am assuming that the reader of this article is aware about ASP.NET Ajax.

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Ravs
{
    // Declare a clock class
    [ToolboxData("<{0}:Clock  runat="server">")]
    public class Clock : WebControl
    {
        //Create one TimerControl
        Timer timer = new Timer();
        // Create one label control for click value
        Label clockLabel = new Label();
        // Declare one Updatepanel
        UpdatePanel updatePanel = new UpdatePanel();
        // Now override the Load event of Current Web Control
        protected override void OnLoad(EventArgs e)
        {            
            // Create Ids for Control
            timer.ID = ID + "_tiker";
            clockLabel.ID = ID + "_l";
            // get the contentTemplate Control Instance
            Control controlContainer = updatePanel.ContentTemplateContainer;
            // add Label and timer control in Update Panel
            controlContainer.Controls.Add(clockLabel);
            controlContainer.Controls.Add(timer);
            // Add control Trigger in update panel on Tick Event
            updatePanel.Triggers.Add(new AsyncPostBackTrigger() 
		{ ControlID = timer.ID, EventName = "Tick" });
            updatePanel.ChildrenAsTriggers = true;
            // Set default clock time in label
            clockLabel.Text = DateTime.Now.ToString();
            // Set Interval
            timer.Interval = 1000;
            // Add handler to timer
            timer.Tick += new EventHandler<eventargs />(timer_Tick);

            updatePanel.RenderMode = UpdatePanelRenderMode.Block;
            //Add update panel to the base control collection.
            base.Controls.Add(updatePanel);
        }
        protected override void Render(HtmlTextWriter output)
        {
            base.Render(output);
        }

        void timer_Tick(object sender, EventArgs e)
        {
            // Set current date time in label to move current at each Tick Event
            clockLabel.Text = DateTime.Now.ToString();
        }
    }
}

Let’s Discuss Each Bit Individually

Up till now what we have seen. A little text and few lines of code fairly commented. So are you as a reader able to understand what I want to say. I think no. So now I have to come out of my laziness and discuss this with you in detail. So let's take each bit of code and examine what exactly it does.

Namespaces for Creating Control

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

We have inherited our Clock control from Webcontrol, so by default our control will contain all the properties and methods that WebControl contains.

C#
[ToolboxData("<{0}:Clock  runat="server">")]
public class Clock : WebControl      

Control Initialization

To create this control, we need a control like Timer, Label, UpdatePanel.

  • Timer: will add auto fire functionality in control
  • Label: will be used to display clock data on web form
  • UpdatePanel: is used for converting the whole clock process in asynchronous mode, so that it will not refresh data of webform, and user will able to do his/her work, and clock will keep running. Sounds good :)
C#
//Create one TimerControl
Timer timer = new Timer();
// Create one label control for click value
Label clockLabel = new Label();
// Declare one Updatepanel
UpdatePanel updatePanel = new UpdatePanel();
// Now override the Load event of Current Web Control

Binding of Controls

As you can see, we have created dynamic Id's of every control so that it should not create a problem when we use two timer controls on the same page.

C#
protected override void OnLoad(EventArgs e)
        {            
            // Create Ids for Control
            timer.ID = ID + "_tiker";
            clockLabel.ID = ID + "_l";

Below you can see that I tried to get the ContentTemplateContainer in a control. Which is an instance of Internal Control with implementation of Itemplate where we will now add our controls.

C#
// get the contentTemplate Control Instance
Control controlContainer = updatePanel.ContentTemplateContainer;
// add Label and timer control in Update Panel
controlContainer.Controls.Add(clockLabel);
controlContainer.Controls.Add(timer);

Now we have added all the controls (Timer and Label) in the updatepanel's contentpanel. So let's move to the main part. Now we will add timer control's reference in update panel’s control trigger with Event name "Tick", so that whenever Timer will raise its Tick event, Update panel will catch it and make it as an Asynchronous request. Now we will set the default data in our label. which is current DateTime, and we will set timer Interval property, (I am using static 1000, you can extend if you wish) so that Timer will know when it has to fire its tick event. Now the last thing we have to do is create an event for timer, so here it is.

C#
timer.Tick += new EventHandler<eventargs />(timer_Tick); 

After that, add updatepanel into base control collection.

C#
// Add control Trigger in update panel on Tick Event
updatePanel.Triggers.Add(new AsyncPostBackTrigger() 
{ 
ControlID = timer.ID, EventName = "Tick" });
updatePanel.ChildrenAsTriggers = true;
// Set default clock time in label
clockLabel.Text = DateTime.Now.ToString();
// Set Interval
timer.Interval = 1000;
// Add handler to timer
timer.Tick += new EventHandler<eventargs />(timer_Tick);

updatePanel.RenderMode = UpdatePanelRenderMode.Block;
//Add update panel to the base control collection.
base.Controls.Add(updatePanel);
}

Setting Logic on Tick Event

Here we don't have to do much. Just set the current date time value to label:

C#
void timer_Tick(object sender, EventArgs e) 
{ 
    // Set current date time in label to move current at each Tick Event 
    clockLabel.Text = DateTime.Now.ToString(); 
} 

NOTE: There is no definition about Render method, as I have not done anything in this.

How To Use

Compile your control class and add it in Toolbox, and then drag it on the page. It will show you running clock without refreshing the page. I hope you will learn something from this, and may be you will come up with something more powerful.

Points of Interest

While developing this code, I got a few more good ideas using Timer and update panel. I will try my best to come back to you guys with something new as soon as possible.

History

  • 2nd June, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect V2Solutions
India India
Solution Architect, with expertise in BFSI, Mortgage, Real Estate, Education, Fleet Domain, with more than 10 years of core knowledge of .net net technologies.
This is a Social Group (No members)


Comments and Discussions

 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey16-Feb-12 0:47
professionalManoj Kumar Choubey16-Feb-12 0:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.