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

Caching Problem in IE

Status
Not open for further replies.

NoCoolHandle

Programmer
Apr 10, 2003
2,321
0
0
US
Hi..
I am building a webapp that modifies an image based on a textbox, then modifies the html in another page and does a response redirect to that page.

In firefox, the new image shows up. In I.E. (7) the image is from the previous visit. However if I hit F5 the new image shows up.

How can I expire the content to prevent caching (the target page is straight html)

Currently the head section has the following 3 lines.
Code:
    <META HTTP-EQUIV="Expires" CONTENT="0" />
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache" />
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top