May 2, 2008 #1 bankofalltrades MIS Joined Apr 22, 2008 Messages 9 Location 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?
I'm attempting to refresh the users webpage every 30 seconds or so and I'm using javascript and asp. Does anyone know how?
May 2, 2008 1 #2 BabyJeffy Programmer Joined Sep 10, 2003 Messages 4,189 Location GB 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 http://www.coderambler.com/http://www.coedit.co.uk/[/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 Upvote 0 Downvote
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 http://www.coderambler.com/http://www.coedit.co.uk/[/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