<%
function GetBody(weburl)
dim objXMLHTTP
set objXMLHTTP=Server.CreateObject("MSXML2.serverXMLHTTP")
objXMLHTTP.Open "GET",weburl,false
objXMLHTTP.send
while objXMLHTTP.readyState<>4
objXMLHTTP.waitForResponse 1000
wend
GetBody=objXMLHTTP.responseBody
set objXMLHTTP=nothing
End Function
Response.Write GetBody("http://www.jr165.com")
%>
浙公网安备 33010602011771号