+ Reply to Thread
Results 1 to 6 of 6

Thread: Automatically refresh a webpage ONLY when content has changed?

  Share/Bookmark
  1. #1

    Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation
    maniac's Avatar
    Join Date
    Feb 2007
    Location
    Kent
    Posts
    2,447
    Thank Post
    155
    Thanked 307 Times in 229 Posts
    Rep Power
    87

    Default Automatically refresh a webpage ONLY when content has changed?

    Hey there,

    I'm in the process of writing a simple digital signage application, which is essentially some javascript displaying in a fullscreen webrowser which scrolls the contents of a HTML file up the screen. That side of it works well.

    I've also written a simple interface to update the contents.htm file using FCKeditor, but at the moment to get it to display the new contents requires a manual refresh of the webpage, which isn't ideal. (the screens for this are going to be fairly high up on a wall, and the PC is going to be the other side of the wall)

    What i'm looking for is some javascript or simelar which will automatically refresh the page only if the contents.htm file has been changed. Is this possible?

    I know I could use a set timed refresh on the page, say every 5 minutes, but the javascript takes a while to get going when you load the page, and I don't really want it doing this every 5 minutes if it can be helped. The contents are likely to only be updated once or twice a week.

    Any ideas gratefully received.

    Mike.

  2. #2

    Reputation Reputation Reputation
    Jona's Avatar
    Join Date
    May 2007
    Location
    Aberystwyth
    Posts
    429
    Thank Post
    7
    Thanked 43 Times in 42 Posts
    Rep Power
    14

    Default

    perhaphs you could do it with AJAX?

  3. #3

    Reputation

    Join Date
    Jan 2008
    Posts
    12
    Thank Post
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    You can do this within HTML. In between the <head></head> tags add the following

    <META HTTP-EQUIV="refresh" CONTENT="300">

    This will reload the page every 5 mintues, the CONTENT is in seconds, so you can change this accordinly.

    HTH

    Cheers

    N

  4. #4

    Reputation
    Reputation Reputation Reputation Reputation Reputation Reputation

    Join Date
    Feb 2007
    Location
    Northamptonshire
    Posts
    3,878
    Thank Post
    254
    Thanked 581 Times in 532 Posts
    Rep Power
    134

    Default

    The OP specifically said he didn't want a timer like that.

    Mind you, I don't have a better solution other than suggesting a manual refresh if its only modified once or twice a week as opposed to making something complicated which needn't be.

  5. #5

    Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation
    dhicks's Avatar
    Join Date
    Aug 2005
    Location
    Alton, Hampshire
    Posts
    3,486
    Thank Post
    620
    Thanked 397 Times in 342 Posts
    Rep Power
    101

    Default

    Quote Originally Posted by maniac View Post
    What i'm looking for is some javascript or simelar which will automatically refresh the page only if the contents.htm file has been changed. Is this possible?
    There's no need to refresh the whole page at all - simply have your controlling page re-load the contents.htm file every 5/10/whatever minutes. How are you loading content.htm into the containing page - are you loading it in to a hidden DIV element? If so, use a Javascript timer to delete the contents of that DIV periodically and load contents.htm again. Might even be simper to use a for loop - run 10 times around the loop, reload contents.htm, start again.

    --
    David Hicks

  6. #6

    Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation

    Join Date
    Aug 2005
    Location
    London
    Posts
    2,817
    Blog Entries
    2
    Thank Post
    75
    Thanked 444 Times in 390 Posts
    Rep Power
    98

    Default

    Ajax feels like the right answer (it's a good buzzword so it must be right :-))

    The other thing might be to have a script running which checks to see if there's new content every 5 minutes. If it finds new content then it refreshes the browser.

    Code below is not complete - I don't know how you will determine if there is new content but I'm guessing you'll query a database for a "last updated" field??

    Set oIE=createobject("internetexplorer.application")
    Do While (oIE.Busy)
    Wscript.Sleep 250
    Loop
    oIE.width=1024
    oIE.height=768
    oIE.left=0
    oIE.top=0
    oIE.visible=true
    oIE.navigate "http://server/sign.htm"

    do
    wscript.sleep 5*60*1000 ' sleep 5 minutes
    'code here to query database for new content
    if bNewContentFound then
    oIE.navigate "http://server.sign.htm"
    end if
    loop

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Group Policy Refresh Intervals.
    By boomam in forum Windows
    Replies: 12
    Last Post: 07-01-2008, 10:52 AM
  2. Automatically detect settings
    By techyphil in forum Windows
    Replies: 5
    Last Post: 26-11-2007, 09:28 PM
  3. AutoIt Script Help - Get Last Changed File
    By russdev in forum Scripts
    Replies: 8
    Last Post: 08-08-2007, 05:34 AM
  4. Defrag PC's automatically
    By TechSupp in forum How do you do....it?
    Replies: 8
    Last Post: 12-04-2007, 12:05 PM
  5. DHCP Refresh
    By Grommit in forum Windows
    Replies: 5
    Last Post: 04-12-2006, 10:55 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts