Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
425 views
in Technique[技术] by (71.8m points)

asp.net - IIS 7 Force Fresh Images

How do I force IIS 7 to not cache images for a particular page?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I would have thought that it is your browser doing the caching.

In any case one way around this as long as your link is not statically declared in the html, is to append a random number on the end of the images url:

<img src="http://mywebsite/images/mypic.png?a=123456" />

the argument means nothing because you are doing nothing with it, but to the browser it looks like a new uncached link.

How you put that random number on the end is up to you:

<img src="javascript:getMyLink();" />

or from the code behind:

Image myImage = new Image();
myImage.Source = "myurl?a=" + Guid.NewGuid().ToString();
someOtherControl.Controls.Add(myImage);

(of course this is pseudo code, you need to check that the property names are correct).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...