Page Refreshers

220117

Beta member
Messages
5
I cannot find automatic page refreshers anywhere.
Does anyone know of any free programs that are available that automatically refresh your current page at a desired time? Preferably really lolvw intervals. Somwething like .1 seconds?
 
don't think that there is, i might start working on a program that does that. PM you if i ever make it.
 
technoman said:
don't think that there is, i might start working on a program that does that. PM you if i ever make it.
Thanks. WHen do you think you will begin?
I need something that will refresh the page at extreme speeds, Probably about 10 times a second or so.
 
Post in the CORRECT FORUM next time.

Anyway there is a much simpler way of refreshing the page using META refresh.

Here is some example code:
Code:
<META HTTP-EQUIV=Refresh CONTENT="0.1">

That should refresh about 10 times a second.

And if you want to make it redirect to another page, use this code:
Code:
<META HTTP-EQUIV=Refresh CONTENT="2; URL=http://google.com/">
That makes the page redirect to Google.com after 2 seconds.

More information here :
http://webdesign.about.com/cs/metatags/a/aa080300a.htm
 
1 thing i forgort to mention :

Insert the cde between the <head> and </head> tags in your document.
 
220117 said:
Thanks. WHen do you think you will begin?
I need something that will refresh the page at extreme speeds, Probably about 10 times a second or so.

lol, the page will not have time to reload, lol are you tryin to crash someones website
 
No, I just need hits on a site.

And, I guess I night have been exagerating tith 10 times per second, but I would like at leats once every 2 seconds.
 
Code:
<META HTTP-EQUIV=Refresh CONTENT="0.1">
Thats the code for you then :) apart from maybe change the '0.1' bit, as technoman rightly pointed out that the page won't have enough time to reload. :)
 
Back
Top Bottom