views:

1018

answers:

2

How would one configurably set http-headers to cache files in IIS >= 6?

Example:

  • *.cache.* => cache nearly forever
  • *.nocache.* => never cache

An example framework using this naming would be the GWT framework.

A: 

http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/23ea6f24-4b44-4fa0-a275-a1b907e1afb6.mspx?mfr=true

Explains the different methods of caching data in IIS.

betelgeuce
Sorry, put up a 'wrong' question for what I needed. In fact the term is better known as HTTP Expiration
harningt
+1  A: 

I think you're referring to setting the cache-control header.

See here http://support.microsoft.com/kb/247404

Paul