Quote Originariamente inviata da cavicchiandrea Visualizza il messaggio
se parliamo di server/siti esterni (vedi maps.googleapis.com) non credo sia possibile la gestione tramite vbscript, ameno che non vegano forniti API dei siti stessi
sto provando questo script
ti faccio sapere come riesco a mandarlo in timeout

codice:
Const WAIT_TIMEOUT =15
Dim http
Set http = Server.CreateObject("MSXML2.ServerXMLHTTP")
    http.open "POST", servleturl,True'async request
    http.setrequestheader "content-type","application/x-www-form-urlencoded"
    http.setrequestheader "accept-encoding","gzip, deflate"
    http.send  "request="& sxml
    If http.waitForResponse(WAIT_TIMEOUT)Then'response ready
        http_response = http.responseText
    Else'wait timeout exceeded
        'Handling timeout etc
        'http_response = "TIMEOUT" 
    EndIf
Set http =Nothing