+ Post New Thread
Results 1 to 6 of 6
Web Development Thread, Automatically refresh a webpage ONLY when content has changed? in Coding and Web Development; Hey there, I'm in the process of writing a simple digital signage application, which is essentially some javascript displaying in ...
  1. #1

    maniac's Avatar
    Join Date
    Feb 2007
    Location
    Kent
    Posts
    3,031
    Thank Post
    209
    Thanked 425 Times in 306 Posts
    Rep Power
    140

    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. IDG Tech News
  3. #2
    Jona's Avatar
    Join Date
    May 2007
    Location
    Cranleigh
    Posts
    459
    Thank Post
    14
    Thanked 47 Times in 46 Posts
    Rep Power
    21
    perhaphs you could do it with AJAX?

  4. #3

    Join Date
    Jan 2008
    Posts
    12
    Thank Post
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    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

  5. #4


    Join Date
    Feb 2007
    Location
    Northamptonshire
    Posts
    4,564
    Thank Post
    344
    Thanked 763 Times in 689 Posts
    Rep Power
    280
    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.

  6. #5

    dhicks's Avatar
    Join Date
    Aug 2005
    Location
    Knightsbridge
    Posts
    5,059
    Thank Post
    1,053
    Thanked 664 Times in 573 Posts
    Rep Power
    212
    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

  7. #6

    Join Date
    Aug 2005
    Location
    London
    Posts
    3,122
    Blog Entries
    2
    Thank Post
    111
    Thanked 516 Times in 446 Posts
    Rep Power
    117
    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

SHARE:
+ Post New Thread

Similar Threads

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

Thread Information

Users Browsing this Thread

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

Posting Permissions

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