Zipman,

I was having the same problem and determined it was the browser doing
the caching.  The only way I was able to overcome this was by adding
"?ms=" + new Date().getTime()" to my action links.  This is some
javascript that simply tacks a unique timestamp to the link to ensure
it is never cached.  For example, I use AJAX to update a div in my page
as follows:

function viewClient(id) {
        new Ajax.Updater('data_client', '/myapp/clients/view/'+id+"?ms=" + new
Date().getTime(), {asynchronous:true});
}

I have not had an issue since implementing this.  Hope it helps...


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to