//统一发送XmlHttp函数
function postform(sAspFile, sPostData) {
try {
//创建XML4.0的XMLHTTP方法
var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP.4.0");
}
catch (exception) {
try {
//创建XML3.0的XMLHTTP方法
var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
}
catch (exception) {
//创建XML2.6的XMLHTTP方法
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
xmlhttp.Open("POST", sAspFile, false);
xmlhttp.setRequestHeader("Content-Length",sPostData.length);
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
try {
xmlhttp.Send(sPostData);
}
catch (exception) {
alert("服务器忙!");
}
try {
//系统错误: -1072896748。
var str=xmlhttp.responseXML.xml;
if (str.length==0) {
str=xmlhttp.responseText;
}
}
catch (exception) {
if (exception.description=='系统错误: -1072896748。') {
str="";
}
}
str=str.replace("&","&");
return str;
}