在xp sp2以后必须同域访问,否则提示没有权限。
behavior download 方法
xmlhttp 方法
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
//xmlhttp=new ActiveXObject("microsoft.xmlhttp");
xmlhttp.open("get","2.htm",false);
xmlhttp.send();
alert(xmlhttp.responseText);
Adodb.Stream 方法
…
Leave a reply