28,409
社区成员




Function GetHttpPage(HttpUrl)
Dim Http
Set Http=Server.CreateObject("MSXML2.ServerXMLHTTP.3.0")
Http.open "GET",HttpUrl,False
Http.Send()
If Http.Readystate<>4 then
Set Http=Nothing
GetHttpPage="$False$"
Exit function
End if
GetHTTPPage=Http.responseText
Set Http=Nothing
If Err.number<>0 then
Err.Clear
End If
End Function