I'm created this class to fetch a file from web to check for new version using ajax, this code run on a windows gadget, on IE8. But I'm having trouble because of the cache. Theres a way to fix this class to disalow cache?

ps: I'm not use any library framework.

var ClassAjax=function(){

    this.data=null;

    var that=this;

    this.get=function(url,send){

        var ajax = new function ObjAjax(){
            try{return new XMLHttpRequest()}
            catch(e){try{return new ActiveXObject("Msxml2.XMLHTTP")}
            catch(e){return new ActiveXObject("Microsoft.XMLHTTP")}}
            return null;
        }

        ajax.onreadystatechange = function(){
            if(ajax.readyState == 1){that.onLoading();}
            if(ajax.readyState == 4){that.data=ajax.responseText; that.onCompleted(that.data);} 
        }
        ajax.open("GET",url,true);
        ajax.send(send);

    };

    this.onLoading=function(){
        //function called when connection was opened
    };

    this.onCompleted=function(data){
        //function called when download was completed
    };
}

var request=new ClassAjax();
request.onCompleted=function(data){ alert(data); }
request.get('http://exemple.com/lastversion.html',null);
link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Ypu can pass the current timestamp as a variable in the url, like this :

var timestamp = new Date().getTime();
ajax.open("GET",url+'?ts='+timestamp,true);

Also, you can force the page to be reloaded on server-side, using the proper meta tags.

link|improve this answer
Thanks! I added a function to my class following your code. – Vitimtk Oct 30 '11 at 3:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.