function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
gmc74gmc74 

Is it possible for an S-Control to auto-update like an AJAX web page?

Is it possible for an S-Control to auto-update like an AJAX web page?  Or at the very least, auto refresh every X seconds?

If yes, can someone point me towards some sample code?

Thanks
NaishadhNaishadh
use javascript timer method in your function for autorefresh.

e.g. method getXX need to refresh 
setTimeout("getXXX()",1000)

Hope this will help.

Thanks