Hi
There is no inbuilt timer control in web applications, however you can use the javascript method to program on basis of time, eg as below (in javascript):
window.setInterval("yourmethodname()","1000");
This will called your method in 1000 milliseconds, i.e. after 1 sec.
Regards
Mike
Fortune favours the brave, so don't regret on missed oppurtunities.
|