Client side image caching with ASP.Net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T11:33:57Z http://stackoverflow.com/feeds/question/259769 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259769/client-side-image-caching-with-asp-net 1 Client side image caching with ASP.Net tpower 2008-11-03T20:11:12Z 2008-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#259785 1 Answer by dove for Client side image caching with ASP.Net dove 2008-11-03T20:14:20Z 2008-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#259816 1 Answer by Andrew Bullock for Client side image caching with ASP.Net Andrew Bullock 2008-11-03T20:22:04Z 2008-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#259851 2 Answer by matt b for Client side image caching with ASP.Net matt b 2008-11-03T20:32:13Z 2008-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#259855 0 Answer by Markus Nigbur for Client side image caching with ASP.Net Markus Nigbur 2008-11-03T20:32:33Z 2008-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>