NoCoolHandle
Programmer
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.
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" />