Request.Form()不起作用

时间:2012-12-21 11:08:05

标签: ajax json asp-classic

我有一个文件打算通过Ajax将数据发送到服务器,我尝试了一些库,但我不能让它们工作,所以我在ASP服务器文件中尝试简单的Request.Form()方法,而不是工作任

Ajax帖子:

var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "http://localhost/serv/sync.asp", true);
DataToSend = "id=1";                
xmlhttp.addEventListener("load", function () {
    if(xmlhttp.status === 200){
        //event handler
    };
}, false); 
xmlhttp.send(DataToSend);

ASP文件:

<%@language=vbscript%>
<%
    value = Request.Form("id")
    Response.ContentType = "text/xml"
    response.write (value) 
%>

Wat的问题是什么?我已经检查了控制台中的Post及其工作情况,但我无法捕获服务器端的值。

最初的想法是发送一个Json字符串,在服务器中解析并执行dataBase插入,但无法使其工作,是否有人有一个工作片段或指向Classic中正在运行的Json解析方法的链接ASP? 感谢。

注意:由于线程问题,我尝试将服务器文件更改为其他文件夹,并将URL更改为“http://127.0.0.1/serv/sync.asp”。

1 个答案:

答案 0 :(得分:1)

我成功地使用了它:

JS:

if (window.XMLHttpRequest) {
    httprequest = new XMLHttpRequest();
    httprequest.texto = busca.id;
} else if(window.ActiveXObject) {
    httprequest = new ActiveXObject("Microsoft.XMLHTTP");
    httprequest.texto = busca.id;
} else {
    alert("Seu navegador não suporta Ajax.");
    return false;
}

if (httprequest.readyState == 4 || httprequest.readyState == 0) {
    var busca = escape("texto texto texto");

    httprequest.open("POST", "../busca_ajax.asp", true);
    httprequest.onreadystatechange = retornaValores; 
    httprequest.send("busca=" + busca + "&teste=2");
}

function retornaValores() {
    if (httprequest.readyState == 4) {
        alert(httprequest.responseText);        
    }
}

ASP:

 dim busca
 busca = trim(request("busca"))

 response.write busca

修改

如果可以,我建议你使用jQuery。它大大简化了这个过程:

$.ajax({
    url: "lista.asp",
    data: { 'ajax': 's', 'dados': '{"id": 123, "nome":"teste"}'},
    cache: false,
    dataType: "json",
    success: function(dados) {
        alert(dados);
    },
    error: function() {
        alert("ERRO!");
    }
});

ASP:

dim ajax, id
ajax = request.form("ajax")
dados = request.form("dados") ' this is a JSON string

response.write dados