我正在尝试从 jQuery ajax 调用经典的 ASP 函数,但它给出了 404 错误。我想在这个 javascript 代码中返回记录 inJSON:
$.ajax({
type: "POST",
url: "../dbFile.asp/GetAllRecords",
data: {"Id"="10"},
error: function(XMLHttpRequest, textStatus, errorThrown){
alert(textStatus);
},
success: function(result){
alert("success");
}
});
return false;
});
我在 asp 经典文件中的 vb 脚本函数是
Function GetAllRecords()
dim cmd, rs
set cmd=Server.CreateObject("ADODB.Command")
cmd.ActiveConnection = conn
cmd.CommandType = 4
cmd.CommandText = "GetAllRecords"
set rs=Server.CreateObject("ADODB.Recordset")
set rs=cmd.Execute()
set GetAllRecords= rs
set rs=nothing
set cmd=nothing
End Function
请指导,我被困在这里。