jQuery ajax から従来の ASP 関数を呼び出そうとしていますが、404 エラーが発生しています。この JavaScript コードで JSON 内のレコードを返したい:
$.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
ガイドしてください、私はここで立ち往生しています。