我试图在我的应用程序中使用asp中的请求参数调用asp页面。两个asp页面都驻留在同一台服务器上。我尝试使用MSXML2.ServerXMLHTTP,但它没有用。有些代码在下面
Function URLGet(URL)
Set Http = CreateObject("MSXML2.ServerXMLHTTP")
Http.Open "GET",URL,True
Http.Send
pagestatus = Http.status
if pagestatus<>"200" then
URLGet="Error:"& pagestatus
else
' URLGet = Http.ResponseBody
URLGet = Http.responseText
end if
End Function
此网址如下
/getchart.asp?Met=node1&SubMet=3232
请告诉我我哪里错了