发送字符串“test”给我的WEBSERVICE
<%@ Language=VBScript%>
<%
str="test"
set oReq = CreateObject("MSXML2.XMLHTTP")
oReq.open "POST","http://localhost/test.asmx/Getstr",false
oReq.setRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
oReq.send str
%>
我该怎么接收到这个字符串的值啊???
gz!up!
學習
学习,up
Request.ServerVariables("All_Http")
up