Lines Matching refs:xmlhttp
8 this.xmlhttp = null;
40 this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
43 this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
45 this.xmlhttp = null;
49 if (! this.xmlhttp) {
51 this.xmlhttp = new XMLHttpRequest();
130 if (this.xmlhttp) {
134 this.xmlhttp.open(this.method, totalurlstring, true);
136 this.xmlhttp.open(this.method, this.requestFile, true);
138 this.xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
142 this.xmlhttp.onreadystatechange = function() { method
143 switch (self.xmlhttp.readyState) {
154 self.response = self.xmlhttp.responseText;
155 self.responseXML = self.xmlhttp.responseXML;
156 self.responseStatus[0] = self.xmlhttp.status;
157 self.responseStatus[1] = self.xmlhttp.statusText;
186 this.xmlhttp.send(this.URLString);