I have a requirment to "refresh" a page ever 30 seconds. I have tried a timer control with no luck. Is there a way to do this in the HTML or Java Script?
Thanks!
Printable View
I have a requirment to "refresh" a page ever 30 seconds. I have tried a timer control with no luck. Is there a way to do this in the HTML or Java Script?
Thanks!
You can put this in the <head></head> code of your page
<meta http-equiv="refresh" content="30">
Thanks! Worked