Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refreshing a display

Status
Not open for further replies.

skijohn

Technical User
Apr 10, 2001
2
US
I have a page that I am attempting to refresh every 3 minutes. Is there a way to get the page to refresh automatically without popping up the "Resend information" dialogue?

Thanks
 
Try this

<script language=&quot;JavaScript&quot;><!--
if (document.images)
setTimeout('location.reload(true)',1000*60*3); // forces a reload from the server
else
setTimeout('location.href = location.href',1000*60*3); // just reloads the page
//--></script>

Good luck

 
As far as I know, not unless your form uses the get method.

HTH,
Marc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top