In my web.config I have staticContent clientCache and it works perfectly.
However, I wanted more specific cache based on the different types of file extension. So I'm trying to accomplish this using the Caching Profiles.
<add extension=".js" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="00:10:00" location="Downstream" varyByQueryString="*"/>
With staticContent - clientCache, I can look at the headers and it returns a "Cache-Control:max-age=600". However, with my Caching Profiles.. it doesn't work. Any advice would be greatly appreciated?