Posted by Noozer on 06/03/05 00:25
I load a webpage on my client PC, change an image file on the server, and
reload the webpage on the client. I still see the orignal image.
Currently I have the following at the top of my page source:
<%
response.ContentType = "image/jpeg"
Response.CacheControl = "no-cache, must-revalidate"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
Response.AddHeader "Last-Modified", date
%>
IIS is set to expire content immediately.
What do I need to do to ensure that the images are fresh from the server
every time? (...and I did search Google and no solutions I could find made
any difference.)
Thx!
[Back to original message]
|