Posted on: 5/8/2014 9:54:46 PM | Views : 392

Hi,
Currently dealing with optimizing an application, so fighting with the cache part of static content (excluding css/js as its handled by bundling)
Either its the status code 200 or 304 way. 

304 is easy, you set 
<caching enabled="true" enableKernelCache="true"> <profiles> <clear/> <add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" /> </profiles> </caching> in web config.
But changing location to client, does not make it like how bundling does it, is there an easy way to make it handle like that?

Go to the complete details ...