Client side image caching with ASP.Net - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T11:33:57Zhttp://stackoverflow.com/feeds/question/259769http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net1Client side image caching with ASP.Nettpower2008-11-03T20:11:12Z2008-11-03T20:32:33Z
<p>This is really two questions, first, do browsers normally cache images on the client by default or does the server have to indicate that they can be cached?</p>
<p>Second, given that I do not have access to IIS what can I do in an ASP application to improve client side caching of images.</p>
http://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net/259785#2597851Answer by dove for Client side image caching with ASP.Netdove2008-11-03T20:14:20Z2008-11-03T20:14:20Z<p>i haven't used this but you may be interested in taking a look at <a href="http://www.codeproject.com/KB/aspnet/CachingImagesInASPNET.aspx" rel="nofollow">caching images in asp.net</a></p>
http://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net/259816#2598161Answer by Andrew Bullock for Client side image caching with ASP.NetAndrew Bullock2008-11-03T20:22:04Z2008-11-03T20:22:04Z<p><a href="http://www.codeproject.com/KB/aspnet/CachingImagesInASPNET.aspx" rel="nofollow">Here</a> is a useful link</p>
<p>Are you generating the images yourself, or are they static files</p>
http://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net/259851#2598512Answer by matt b for Client side image caching with ASP.Netmatt b2008-11-03T20:32:13Z2008-11-03T20:32:13Z<p>A well-written browser will use the HTTP headers associated with the image to determine if the image should be cached and how long it should be cached for.</p>
<p>Take a look at the Cache-Control, Pragma, and Expires headers in the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html" rel="nofollow">HTTP 1.1 specification</a>.</p>
http://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net/259855#2598550Answer by Markus Nigbur for Client side image caching with ASP.NetMarkus Nigbur2008-11-03T20:32:33Z2008-11-03T20:32:33Z<blockquote>
<p>This is really two questions, first, do browsers normally cache images on the client by default or does the server have to indicate that they can be cached?</p>
</blockquote>
<p>Browsers cache what they are allowed to. You can globally set those Headers within IIS, but you can almost always override them from within your application. Unless some ssl accelerators or firewalls override them..</p>
<blockquote>
<p>Second, given that I do not have access to IIS what can I do in an ASP application to improve client side caching of images.</p>
</blockquote>
<p>just look around in System.Web.HttpContext.Current.Response.Cache</p>