Working with Asp.Net Timer control on client side
Hi,
Few days back I saw this question in the forums and from then I was looking for an answer for it. The Timer control in the asp.net
A few days back I learned that the timer control can easily be tweaked in the client side also. Let’s assume we are using a timer control with ID Timer1.
var Timer1 = $find(‘<%= Timer1.ClientID %>’);
//Now to change the timer interval use
Timer1.set_interval(5000);
//And to stop the timer
Timer1._stopTimer();
Vikram