Just adding date might not help, you might need to make string more unique to kill the caching (actually making browser request again - data is cached anyway unless stopped by HTTP headers or equivalent ways).
(new Date ()).getTime ()
That should work.
But why do you want to kill the caching? Don't you think, you are making user download things again and again. If you are doing it for asset images or smaller fragments (low file size) it might make sense. If you are doing it for your entire app, believe me it would not only cause bad user-experience but also cost you more bandwidth (your server is serving all requests).
You can perhaps look at your app and figure out, what are those things you don't want to be cached? You can do it for selective things instead of entire app.
Never mind, if you have already taken care of these, I just thought to add my 2 cents :-)
On Tue, Aug 5, 2008 at 5:31 PM, sindhu
<jsindhu...@gmail.com> wrote:
Thanks..for the solution...its working fine...But that problem is not
cleared completely...Sumtimes,rarely this problem arises..