vbs 能用 xmlHttp 的 SetProxy 方法吗?
vbs 能用 xmlHttp 的 SetProxy 方法吗?本人想通过xmlHttp 的 SetProxy 方法验证ip , 请大家指教!
Const HTTPREQUEST_PROXYSETTING_DEFAULT = 0 Const HTTPREQUEST_PROXYSETTING_PRECONFIG = 0 Const HTTPREQUEST_PROXYSETTING_DIRECT = 1 Const HTTPREQUEST_PROXYSETTING_PROXY = 2 Private Sub CommandButton1_Click() URL = "http://www." Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.5.0") xmlhttp.SetProxy HTTPREQUEST_PROXYSETTING_PROXY, "219.246.90.162:3128" xmlhttp.Open "GET", URL, False xmlhttp.send ("") If xmlhttp.readyState = 4 Then ' Response.Write xmlhttp.getAllResponseHeaders MsgBox "ok" End If End Sub在网上找了一个代理服务器,测试正常。