Quote Originally Posted by Anders Ohrt View Post
Albin,

You need to set sDfBuildNr before including df-include.js. We do this to make sure nothing is cached:
Code:
var sDfBuildNr = "<%= oDFVersion.Call("get_DfBuildNr") %>";
[...]
<script type="text/javascript" src="DfEngine/df-include.js?v=<%= oDFVersion.Call("get_DFVersion") %>"></script>
DfBuildNr returns a hash of system.css, application.css and theme.css (which we precompute at build time), and DFVersion returns psVersionID of ghoWebApp.
Thanks!