我正在尝试将数据从 Textarea 发布到经典 ASP 脚本,该脚本更新本地计算机上的 MS SQL,然后发布到另一台服务器上的 PHP 脚本。但是,执行以下操作不起作用,因为它会切断 textarea 的数据。它包含用于 HTML 和其他数据的特殊字符。
所以我的问题是,如何使用 ASP Classic 通过 POST 传递这些数据?
找了半天,希望有大神指教,谢谢!
strUrl = "http://www.example.com/index.php"
requestData = request("request")
requestData2 = request("request2")
strData = "request=" & requestData & "&request2=" & requestData2
postHTML (strUrl, strData)
function postHTML (strUrl, strData)
Set xmlHttp = Server.Createobject("MSXML2.ServerXMLHTTP")
xmlHttp.Open "POST", strUrl, False
xmlHttp.setRequestHeader "User-Agent", "asp httprequest"
xmlHttp.setRequestHeader "content-type", "application/x-www-form-urlencoded"
xmlHttp.Send strData
postHTML = xmlHttp.responseText
xmlHttp.abort()
set xmlHttp = Nothing
end function
例如,如果 an&
在 requestdata2 中,那么之后的任何内容都会&
被截断,因为它认为它正在开始一个新字符串。但我希望能够传递这个。
目前我能想到的唯一解决方案:对特殊字符进行字符串替换,例如=
and&
并用 php 服务器上的另一个字符串替换来恢复它们。然而,这不是我想要完成的任务。我想要正确的发帖方式。