如何在请求头中执行请求循环?
我的数据库里有一整天的交易记录。
我的服务器将把所有这些值发送到另一个服务器以更新付款状态。
我的vbscript代码。

 do while not abc.eof sUrl = "https:/abc.com"

            sRequest = "ID="&escape(a)&"&CODE="&escape(b)&"&NAME="&(strEncrypted)


            HTTPPost sUrl, sRequest         Function HTTPPost(sUrl, sRequest)
              Set oHTTP=Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
              oHTTP.setOption 2, 13056
              oHTTP.open "POST", sUrl,false
              oHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
              oHTTP.setRequestHeader "Content-Length", Len(sRequest)
              oHTTP.send sRequest
              HTTPPost = oHTTP.responseText
             End Function    abc.movenext      loop

最佳答案

函数(…)必须在do while(…)之外

10-05 22:55