how to set cache control to public in iis 7.5
- by ivymike
I'm trying to set cache control header to max age using the following snippet in my web.config:
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.00:00:00" />
</staticContent>
</system.webServer>
Some how this isn't being reflected in the response. Instead I…