Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

does anyone know how to initiate a control F5 to automatically refresh 1

Status
Not open for further replies.
Apr 22, 2008
9
US
I'm attempting to refresh the users webpage every 30 seconds or so and I'm using javascript and asp. Does anyone know how?
 
You can use a non Javascript (and non asp) solution via a meta tag.

Code:
<html>
<head>
<meta http-equiv="refresh" content="1800">
...

You can read all about this at Wikipedia

Cheers,
Jeff

[tt]Jeff's Blog [!]@[/!] CodeRambler
[/tt]

Make sure your web page and css validates properly against the doctype you have chosen - before you attempt to debug a problem!

FAQ216-6094
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top