PDA

View Full Version : refreshing/time (W98)



hawk_al_smith
04-05-2003, 11:13 PM
Is there a way can make the IEwindow refresh it self independently every certain time without clicking and clicking on REFRESH button

|<font color=green>PEACE</font color=green>, NO MORE <font color=red>WARS...</font color=red>|

hawk_al_smith
04-07-2003, 01:03 AM
I asked my friends but none of them know how to do it, ANYBODY have ideas?

|<font color=green>PEACE</font color=green>, NO MORE <font color=red>WARS...</font color=red>|

jdharm
04-07-2003, 06:07 AM
Are you needing to do this with a particular site, or all sites? Is this for administrative purposes or just to check for changes on the site?

If you could tell us specifically what you are doing we might be able to suggest a way to accomplish it.

Josh

The preceeding was from the "For What It's Worth" files, which by definition may be worthless. Take with a grain or ten of salt.

adg
04-07-2003, 06:12 AM
To the best of my knowledge, unless it is "programmed" into the site itself you must refresh manually.

Allan
<a target="_blank" href=http://www.tweakdatabase.com/idealbb>tweakxp.com</a>

hawk_al_smith
04-08-2003, 02:06 AM
I wanna do it in one particular site and wanna do it to check the changes on that site (checking some rising or decreasing rates, or the latest news on a cable news site)
THANKS IN ADVANCE…


|<font color=green>PEACE</font color=green>, NO MORE <font color=red>WARS...</font color=red>|

jdharm
04-09-2003, 11:25 AM
This is kind of cheating, but it works.

Copy the following bold text and past in into Notepad. Then save the file as an *.html file. I will post an explanation after. The blue parts are what you will change to fit your needs.


&lt;html&gt;
&lt;head&gt;
&lt;meta HTTP-EQUIV="Refresh"
CONTENT="<font color=blue>&lt;refresh time&gt;</font color=blue>; URL=<font color=blue>&lt;path&gt;</font color=blue>\<font color=blue>&lt;filename&gt;</font color=blue>.html"&gt;
&lt;title&gt;News Monitor&lt;/title&gt;
&lt;/head&gt;
&lt;frameset rows="0%,100%"&gt;
&lt;frame name="refresh" marginwidth="0" scrolling="no"&gt;
&lt;frame src="http://www.<font color=blue>&lt;website here&gt;</font color=blue>.com" name="site"&gt;
&lt;/frameset&gt;
&lt;/html&gt;



What you are doing is creating a page that you store locally. The code on the page refreshes the local page that you created. One of the two frames on your local page is 100% of the page and contains the website of your choosing. The other frame is 0% of the page and contains the code responsible for the refresh.

Replace <font color=blue>&lt;refresh time&gt;</font color=blue> above with the time, in seconds, between each refresh.

Replace <font color=blue>&lt;path&gt;</font color=blue>\<font color=blue>&lt;filename&gt;</font color=blue>.html above with the path and filename of the html file you are creating for this purpose. For example, if you put this page, named "news" in your favorites folder and wanted it to update every 5 minutes then that line of code would look like this:

&lt;meta HTTP-EQUIV="Refresh"
CONTENT="300; URL=c:\windows\favorites\news.html"&gt;

Replace the http://www.<font color=blue>&lt;website here&gt;</font color=blue>.com with the URL of the website you want to refresh. To update MSN every 5 minutes the line of code would look like:

&lt;frame src="http://www.msn.com" name="site"&gt;

Not exactly what you were looking for, but pretty darn close I think.

Josh

The preceeding was from the "For What It's Worth" files, which by definition may be worthless. Take with a grain or ten of salt.

hawk_al_smith
04-11-2003, 08:53 PM
goooooooood
THANKS A LOT

|<font color=green>PEACE</font color=green>, NO MORE <font color=red>WARS...</font color=red>|

jdharm
04-11-2003, 09:31 PM
Glad to help.

I like this kind of problem. A challenge to figure out, but totally doable./images/forums/icons/smile.gif

Josh

The preceding was from the "For What It's Worth" files, which by definition may be worthless. Take with a grain or ten of salt.