Main site > MoneySavingExpert.com Forums > Home & Play > Techie Stuff > Auto Refresh in Internet Explorer (Page 1)

IMPORTANT! This is MoneySavingExpert's open forum - anyone can post

Please exercise caution & report any spam, illegal, offensive, racist, libellous post to forumteam@moneysavingexpert.com

  • Be nice to all MoneySavers
  • All the best tips go in the MoneySavingExpert weekly email

    Plus all the new guides, deals & loopholes

  • No spam/referral links
or Login with Facebook
Auto Refresh in Internet Explorer
Closed Thread
Views: 11,811
Thread Tools Search this Thread Display Modes
# 1
Sweetchuck
Old 24-03-2006, 4:27 PM
MoneySaving Convert
 
Join Date: Dec 2005
Posts: 168
Thanked 24 Times in 24 Posts
Default Auto Refresh in Internet Explorer

Does anyone know if it's possible for me to set my Internet Explorer browser to refresh itself at specific intervals? I know that you can download utilities which do this for you, but I'm on a very prohibitive network with no admin privileges.

Is there a feature in recent versions of IE which will refresh the page you're on every 5 minutes or so?

I'm using IE6 on XP, by the way.

Cheers for any help anyone can give...
Sweetchuck is offline
Report Post
# 2
GreenNotM
Old 24-03-2006, 6:58 PM
Serious MoneySaving Fan
 
Join Date: Jan 2006
Location: London
Posts: 1,073
Thanked 530 Times in 486 Posts
Default

try pressing F5 - but you are probably on a restrictive network so they can save bandwidth ....... why have a page refreshed if you are not reading it ?
Rich people save then spend.
Poor people spend then save what's left.
GreenNotM is offline
Report Post
# 3
Sweetchuck
Old 28-03-2006, 10:08 AM
MoneySaving Convert
 
Join Date: Dec 2005
Posts: 168
Thanked 24 Times in 24 Posts
Default

Quote:
Originally Posted by GreenNotM
try pressing F5 - but you are probably on a restrictive network so they can save bandwidth ....... why have a page refreshed if you are not reading it ?
That's not an auto refresh, that's a manual refresh.

I just want to be able to make IE refresh my page automatically - it's not for secure data or anything like that. It's just that I need to do a lot of offline reading for my job, but I also need to keep as up to date as possible with several messageboard sites. By having the page refresh automatically every couple of minutes, I can just glance up quickly to see what the state of play on screen is without having to worry about breaking off my reading too much. Time is a major factor in my work so it would make my life a hell of a lot easier.

Anybody? I know you can download software to perform this easily, but as I say, I don't have admin privileges. If there's any way of doing this automatically (even if slightly complicated), I'd be really grateful to hear about it.
Sweetchuck is offline
Report Post
# 4
Chippy_Minton
Old 28-03-2006, 1:31 PM
Fantastically Fervent MoneySaving Super Fan
 
Join Date: Aug 2004
Posts: 3,330
Thanked 1,806 Times in 1,685 Posts
Default

I'm not sure if you'll need admin permissions to run VBscript, but the script below does the job. Copy and paste the code into Notepad and save it as "IErefresh.vbs". Then double-click IErefresh.vbs to run it. The first prompt asks for the web site URL (the http:// bit is optional) and the second asks for the refresh interval (default 60 seconds).

Code:
'IErefresh.vbs

option explicit
dim ie, url, refreshSeconds, i

url = InputBox("Enter web site URL (http:// optional)")
if url = "" then WScript.Quit
refreshSeconds = InputBox("Enter refresh interval in seconds",,60)
if IsEmpty(refreshSeconds) then WScript.Quit
set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")
ie.Navigate url
ie.Visible = true
do until ie.ReadyState = 4 : WScript.Sleep 100 : loop 
while true
	i = 0
	while i < CInt(refreshSeconds)
		WScript.Sleep 1000
		i = i + 1
	wend	
	ie.refresh2 3	'3=REFRESH_COMPLETELY
wend

sub ie_onQuit
	WScript.Quit
end sub

Last edited by Chippy_Minton; 28-03-2006 at 11:53 PM. Reason: v1.1
Chippy_Minton is offline
Report Post
The Following 3 Users Say Thank You to Chippy_Minton For This Useful Post: Show me >>
# 5
NastyMatt
Old 28-03-2006, 3:07 PM
MoneySaving Stalwart
 
Join Date: Feb 2006
Posts: 366
Thanked 149 Times in 101 Posts
Default

you won't need admin rights. Nice bit of vbs there Chippy.. does that pay for the grale??
Lady Astor: "Winston, if I were your wife I'd put poison in your coffee."

Sir Winston Churchill: "Nancy, if I were your husband I'd drink it."
NastyMatt is offline
Report Post
# 6
mynamesnotdave
Old 28-03-2006, 3:12 PM
MoneySaving Stalwart
 
Join Date: Aug 2005
Location: Manchester
Posts: 203
Thanked 224 Times in 46 Posts
Default

Heres a handy site for you that does exactly what you want:

http://urlrefresh.harrybailey.com/
If you're feeling down, you must be holding a duck.
mynamesnotdave is offline
Report Post
The Following User Says Thank You to mynamesnotdave For This Useful Post: Show me >>
# 7
Sweetchuck
Old 28-03-2006, 3:46 PM
MoneySaving Convert
 
Join Date: Dec 2005
Posts: 168
Thanked 24 Times in 24 Posts
Default

Quote:
Originally Posted by mynamesnotdave
Heres a handy site for you that does exactly what you want:

http://urlrefresh.harrybailey.com/
You're a diamond mate, cheers for that. It's exactly what I was looking for.
Sweetchuck is offline
Report Post
# 8
Chippy_Minton
Old 28-03-2006, 11:58 PM
Fantastically Fervent MoneySaving Super Fan
 
Join Date: Aug 2004
Posts: 3,330
Thanked 1,806 Times in 1,685 Posts
Default

Quote:
Originally Posted by NastyMatt
you won't need admin rights. Nice bit of vbs there Chippy.. does that pay for the grale??
No, you must be thinking of a different Chippy , and my first name isn't Martin
Chippy_Minton is offline
Report Post
# 9
streetscholar
Old 29-03-2006, 6:42 AM
MoneySaving Convert
 
Join Date: Aug 2005
Posts: 27
Thanked 2 Times in 2 Posts
Default

yeah you do not want to refresh pages where you have your credit card #'s on... you'll get charged the # of times you refresh
streetscholar is offline
Report Post
# 10
zand210
Old 30-08-2008, 4:38 AM
MoneySaving Newbie
 
Join Date: Aug 2008
Posts: 1
Thanked 0 Times in 0 Posts
Default

Quote:
Code:
'IErefresh.vbs
 
option explicit
dim ie, url, refreshSeconds, i
 
url = InputBox("Enter web site URL (http:// optional)")
if url = "" then WScript.Quit
refreshSeconds = InputBox("Enter refresh interval in seconds",,60)
if IsEmpty(refreshSeconds) then WScript.Quit
set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")
ie.Navigate url
ie.Visible = true
do until ie.ReadyState = 4 : WScript.Sleep 100 : loop 
while true
    i = 0
    while i < CInt(refreshSeconds)
        WScript.Sleep 1000
        i = i + 1
    wend    
    ie.refresh2 3    '3=REFRESH_COMPLETELY
wend
 
sub ie_onQuit
    WScript.Quit
end sub
I tryed this code, but for some reason, it does not refresh it once it submits the url page.

please help
zand210 is offline
Report Post
# 11
inamabilis
Old 30-08-2008, 4:55 AM
MoneySaving Convert
 
Join Date: Mar 2007
Posts: 194
Thanked 63 Times in 50 Posts
Default

Quote:
Originally Posted by zand210 View Post
I tryed this code, but for some reason, it does not refresh it once it submits the url page.

please help
Works fine for me, what version of windows and internet explorer are you using?
On a side note I cant decide whether you're more likely to be praised for using the search feature or flamed for reviving a post from more than 2 and a half years ago
Everyone needs a volume control -
When you shout every day and make everthing a catastrophe,
no one will hear you when you need to say something really important.

inamabilis is offline
Report Post
# 12
djcritch
Old 13-08-2009, 10:48 AM
MoneySaving Newbie
 
Join Date: Aug 2009
Posts: 2
Thanked 0 Times in 0 Posts
Default Auto refresh online

hi guys you to can also auto refresh a website using any browser by going to refreshthis.com
djcritch is offline
Report Post
# 13
busenbust
Old 13-08-2009, 11:10 AM
PPR
Fantastically Fervent MoneySaving Super Fan
 
Join Date: Dec 2008
Location: Los Angeles .
Posts: 4,694
Thanked 1,983 Times in 1,670 Posts
Default

Switch to Firefox and download its Auto Refresh Add-on. (The Opera browser also has this feature built-in).
busenbust is offline
Report Post
Closed Thread

Bookmarks
 
 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

 Forum Jump  

Contact Us - MoneySavingExpert.com - Archive - Privacy Statement - Top

Powered by vBulletin® Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

All times are GMT +1. The time now is 4:56 PM.

 Forum Jump  

Free MoneySaving Email

Top deals: Week of 22 May 2013

Get all this & more in MoneySavingExpert's weekly email full of guides, vouchers and Deals

GET THIS FREE WEEKLY EMAIL Full of deals, guides & it's spam free

Latest News & Blogs

Martin's Twitter Feed

profile

Cheap Travel Money

Find the best online rate for holiday cash with MSE's TravelMoneyMax.

Find the best online rate for your holiday cash with MoneySavingExpert's TravelMoneyMax.

TuneChecker Top Albums

  • CARO EMERALDTHE SHOCKING MISS EMERALD
  • RUDIMENTALHOME
  • EMELI SANDEOUR VERSION OF EVENTS

MSE's Twitter Feed

profile
Always remember anyone can post on the MSE forums, so it can be very different from our opinion.
We use Skimlinks and other affiliated links in some of our boards, for some of our users.