Вы можете попытаться отключить любое кэширование с заголовками и посмотреть, что-нибудь изменится, что-то вроде этого:
<cfset SendHeader("Expires", "Sun, 19 Nov 1978 05:00:00 GMT") />
<cfset SendHeader("Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0") />
<cfset SendHeader("Pragma", "no-cache") />
<cfset SendHeader("Last-Modified", DateFormat(DateConvert("Local2UTC", Now()), "full") & " " & TimeFormat(DateConvert("Local2UTC", Now()), "HH:mm:ss")) & " GMT" />
Я использую этот, чтобы избежать кеширования AJAX-запросов в IE.
РЕДАКТИРОВАТЬ: Забыл упомянуть, что SendHeader
это обертка UDF:
<cffunction name="SendHeader" returntype="void" access="public" output="false" hint="Wrapper of cfheader tag">
<cfargument name="name" type="string" required="true" hint="Header name">
<cfargument name="value" type="string" required="true" hint="Header value">
<cfheader name="#arguments.name#" value="#arguments.value#" />
</cffunction>