Client-Side Output caching
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I'm writing a web server to retrieve images and loops from a database. Since those objects are not standard multimedia format, I want to convert them on the fly to jpg or avi basing on some params. To do this I have an isapi filter that in case of the right header, send the requested object in the requested format. I'm using an img tag in my asp page and the source is dynamically set as another page of the webserver that grabs the params and fires the isapi putting the header. What i need is to cache the responsed object in such a way I don't need to redo everything in case of reclick. Thanks