Thread: <iframe> Auto-Refresh

Results 1 to 4 of 4
Share This Thread →
  1. #1
    baseballdude_'s Avatar
    baseballdude_ is offline Expert Learner ASP Free Intermediate (1500 - 1999 posts)
    Join Date
    Feb 2005
    Location
    Wisconsin
    Posts
    1,909
    Rep Power
    96

    <iframe> Auto-Refresh

    How to I get an <iframe> to auto-refresh after 90 seconds?

  2. #2
    Shadow Wizard's Avatar
    Shadow Wizard is offline Moderator From Beyond ASP Free God (5000+ posts)
    Join Date
    Sep 2004
    Location
    Israel
    Posts
    31,124
    Rep Power
    2920
    either put such tag in the iframe page:
    Code:
    <meta http-equiv="Refresh" Content="90" />
    or use javascript in the parent page:
    Code:
     <script language="javascript">
       window.setInterval("ReloadFrame();", 90000);
       
       function ReloadFrame() {
     	 document.frames["MyFrame1"].location.reload();
       }
     </script>
    Comments on this post
    • baseballdude_ → agrees: I wish I could give you repuation every time you helped me, but I'll do it as much as I can...LoL

  3. #3
    baseballdude_'s Avatar
    baseballdude_ is offline Expert Learner ASP Free Intermediate (1500 - 1999 posts)
    Join Date
    Feb 2005
    Location
    Wisconsin
    Posts
    1,909
    Rep Power
    96
    The latter code is what I wanted--I'm using a free external shoutbox, so I can't edit that page. You guys should check it out.

    http://www.prosurfacing.com/shout.html

    Thanks Shadow.

  4. #4
    Shadow Wizard's Avatar
    Shadow Wizard is offline Moderator From Beyond ASP Free God (5000+ posts)
    Join Date
    Sep 2004
    Location
    Israel
    Posts
    31,124
    Rep Power
    2920
    Quote Originally Posted by baseballdude_
    The latter code is what I wanted--I'm using a free external shoutbox, so I can't edit that page. You guys should check it out.

    http://www.prosurfacing.com/shout.html

    Thanks Shadow.
    no problem... nice shoutbox, but for some reason I wasn't able to shout in there.

Share This Thread →

Become Part of This Conversation

Join NowFor Free!

Similar Threads

  1. UPDATE: MySQL Auto Backup & Export v1.1
    By Beyonder in forum SQL Development
    Replies: 0
    Last Post: March 20th, 2005, 08:21 PM
  2. Auto refresh
    By SpiroGeek in forum HTML, JavaScript And CSS Help
    Replies: 4
    Last Post: January 14th, 2005, 08:55 AM
  3. Auto Refresh ASP page on Database updates
    By bensch in forum ASP Development
    Replies: 8
    Last Post: November 3rd, 2004, 02:58 PM
  4. Refresh Excel link to Access
    By Snowsride in forum Microsoft Access Help
    Replies: 1
    Last Post: December 23rd, 2003, 03:47 PM
  5. how to auto refresh form page?
    By michelle_bcp in forum ASP Development
    Replies: 1
    Last Post: November 27th, 2003, 12:03 PM

ASP Free Advertisers and Affiliates