我是通过ajax post请求发送请求,然后通过asp classic我如何获取此请求发送的参数
我的代码段如下
var url = "get_data.asp"; var params = "lorem=ipsum&name=binny"; http.open("POST", url, true); http.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); http.setRequestHeader("Content-length", params.length); http.setRequestHeader("Connection", "close"); http.onreadystatechange = fetch_Data; http.send(params);
请帮帮我
答案 0 :(得分:1)
从ASP的角度来看,它的POST请求与其他任何一样,所以;
x = Request.Form("lorem")
y = Request.Form("name")
http://www.codeguru.com/csharp/.net/net_asp/article.php/c19325/
答案 1 :(得分:0)
由于这是一个POST请求,您可以将其视为表单提交。
例如,如果您有“名称”字段:
myVariable = Request.Form("Name")