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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Live webcam pix won't refresh in IE

Status
Not open for further replies.

ProgrammerKC

Programmer
Oct 12, 2000
7
US
I need the code to tell the IE browser not to cache the webcam pix but to reload a new
pic everytime the browswer auto refreshes.

Isn't there a pragma no cache tag or something like that?

Does anyone have the exact code for this tag?

Where should this tag be located in the HTML document?
 
Try...

Code:
<META HTTP-EQUIV=&quot;expires&quot; CONTENT=&quot;Sun, 1 Jan 1995 00:00:00 GMT&quot;>

This goes in the within the head tags and the date can be anything earlier than right now.

There is a pragma no-cache tag

Code:
<HTTP-EQUIV=&quot;PRAGMA&quot; CONTENT=&quot;NO-CACHE&quot;>

but check out this doc for a potential problem...


Later, Rob
robschultz@yahoo.com
-Focus on the solution to the problem, not the obstacles in the way.-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top