![]() |
#2
yms1232008-06-18 13:12
|
function GetData(URL) {
var http = new ActiveXObject("MSXML2.XMLHTTP.3.0");
http.open("GET",URL,false);
http.send(null);
document.getElementById("nr").innerHTML= http.responseText;
}