hwo can i make the application "WAIT" or "PAUSE" for X seconds ?
Professional Software Development Tools
hwo can i make the application "WAIT" or "PAUSE" for X seconds ?
Use Application.Sleep()
Adam Kapilik
Yes but it will puase the whole application, not only the script and thats the problem.
use the page's On Timer event... and place the next in On Show:
Then the script that is placed in the On Timer event will be executed every 1 second...Code:Page.StartTimer(1000) --one second, change as you need