tags:

views:

29

answers:

1
+2  Q: 

Caching problem.

I have a web page with a set of images and java script files.

I want to cache all the images+java script other than a single image which is the logo.

Is this possible ? and how would I do it ?

I am using IIS server.

+1  A: 

Yes. Just configure your server to have a default cache configuration for images and JS, and then override it for the logo. Possibly with a <file> block if you are using Apache.

See this decent caching tutorial.

David Dorward