Is there a way to automatically change the response header in ASP.NET MVC when the browser requests a Javascript or CSS file?

Basically, I want my Javascript and CSS files to be served with this set explicitly on in the response header:

Cache-Control: public

Help?

link|improve this question

65% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Here is an article you may find useful for adding Expires or Cache Control Header to static content in IIS.

Hope it helps.

http://www.iis.net/ConfigReference/system.webServer/staticContent/clientCache

link|improve this answer
1  
+1 This helped alot. Do you know if there is any way to 'define' static content so I don't have to guess what IIS considers static content? For example if I render charts (which are sensitive from a security standpoint) I don't want those cached as 'static' images. Any idea? – Alex Sep 19 '09 at 10:26
feedback

If you have access to http server you can make it on http layer using some rewrite mechanism - it will be fastest way. Some hardware loadbalancer also allows this.

link|improve this answer
I have access to IIS7.... But not sure how to do this. – Alex Sep 19 '09 at 8:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.