Page.StartTimer

Page.StartTimer ( 

number Interval = 1000,

number ID = 10 )

Example 1

Page.StartTimer(1000);

Starts a page timer whose ID is 10, and tells it to trigger the On Timer event once every second.

Example 2

Page.StartTimer(250, 25);

Starts the page timer whose ID is 25, and tells it to trigger the On Timer event 4 times per second.

Example 3

Page.StartTimer(2500, 100);

Starts the page timer whose ID is 100, and tells it to trigger the On Timer event every 2.5 seconds.

See also:  Related Actions