November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
I disagree, disabling the cache only ensure you develop in an evironment different from the one the client uses. Use Ctrl+F5 when you need to refresh the cache. If this does not help, you need to find the real cause of the problem.
As a side note, you should get used to the fact that the only way to truly ensure something will not be cached is to use another name or path. Especially when you've deployed to a production system and need to update it. Something that EPiServer has been inherently bad at (with js and css files under /util spanning different versions of the product.)
/Steve
I had the same problem with CSS caching.
To resolve this I updated the static file expirationTime setting in web.config in my development environment. Don't forget to restore this when going to production.
<staticFile expirationTime="0:0:1" />
/Nils
Another trick in development is to add something as a parameter to the css file like
<link rel="stylesheet" type="text/css" href="fil.css?<%=DateTime.Now%>" />
that will ensure that you can "debug" your css file without thinking about caching
Just remember to remove the server code when you are finished :)