This topic is locked

Auto-refresh list page every 10 seconds

2/21/2011 5:12:14 PM
ASPRunnerPro Tips and tricks
admin

To auto-refresh any given page add the following code to Javascript OnLoad event:

setTimeout("location.reload();",10*1000);


This will refresh that page every 10 seconds.