Comment utiliser msxml 3 ou 6 en ASP :
1 2 3 4 5 6 7 8 |
<% url = "http://www.serveur-windows.com" set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.6.0") xmlhttp.open "GET", url, false xmlhttp.send "" Response.write xmlhttp.responseText set xmlhttp = nothing %> |
Pour utiliser la 3.0 il faudra donc écrire :
1 |
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.3.0") |
Please follow and like us: