Forgive me if I'm beating a dead horse but searched Google and this
newsgroup for any insight and could find none. I am experiencing
browser cache with my CF_AJAX requests on IE.
The solution is simple, to have Javascript append a unique identifier
to all requests, which ensures that IE will not serve a previously
received version. As far as the unique identifier, appending current
system date time as a URL variable to all requests will work. As such,
where in the CF_AJAX files should I place the following (pseudo) code?
function xxxxxxxxx(url){
// This new code
if(url.indexOf('?') > 0){
url = url + '&cfajaxUID=' + new Date().getTime();
}
else{
url = url + '?cfajaxUID=' + new Date().getTime();
}
// End this new code
// Standard CF_AJAX code for making the AJAX request
blah blah blah.....
}
Any help is greatly appreciated.