The Disturbed Buddha

Simple Thoughts from a Self-Proclaimed Novice

Controlling the ASP.NET Timer Control with JavaScript

Have you ever wanted to control your <asp:Timer> control from client-side code?

Let’s say you’ve named your timer ‘Timer1’. The first step is to create a reference to this component:

    var timer = Sys.Application.findComponent(‘<%= Timer1.ClientID %>’);

Or, better yet, use the $find() shortcut:

    var timer = $find(‘<%= Timer1.ClientID %>’);

You can then easily access the timer’s interval and enabled properties, as well as start and stop the timer.

    //returns the timer’s interval in milliseconds: 
    var waitTime = timer.get_interval;       

    //sets the timer’s interval to 5000 milliseconds (or 5 seconds): 
    timer.set_interval(5000);       

    //returns whether or not the timer is enabled: 
    var isTimerEnabled = timer.get_enabled();       

    //disables the timer: 
    timer.set_enabled(false);       

    //starts the timer: 
    timer._startTimer();       

    //stops the timer: 
    timer._stopTimer();

For the more adventurous of you who would like to look at the client-side behavior code for the Timer control and who elected to download the source code for the AJAX Control Toolkit, you can probably find the .js file at:

Drive:\Program Files\Microsoft ASP.NET\AJAX Control Toolkit\AJAXControlToolkit\Compat\Timer\Timer.js

(If you don’t know what you are doing, do not make any changes to this file!)

November 26, 2007 - Posted by | Ajax, ASP.NET, Javascript, Web Development

3 Comments »

  1. It would be more helpful if you provided info about how to add a timer control at the client side thorugh java script. But this is a great effort as well. Thanks

    Comment by Nachiket | January 24, 2008 | Reply

  2. Nachiket:

    Thanks for the feedback. The ASP.NET AJAX Timer control is a server control which cannot be added via Javascript. However, it’s behaviors can be controlled via client-side script, which is what the article addressed.

    If you want a purely client-side timer solution, look at the Javascript window.setInterval() method.

    Comment by disturbedbuddha | January 24, 2008 | Reply

  3. All is accurate and on business. It is well written, I thank.

    Comment by bariforun | January 19, 2011 | Reply


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.