0
以下は、c#バックエンドでの書き方です。ポストメソッドを使ってリストを取得する。c#でのajax関数の書き方
$(function() {
$.ajax({
type: "POST",
url: "Default.aspx/GetCustomers",
data: '{}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert(response.d);
},
error: function (response) {
alert(response.d);
}
});
});
使用asp.netのWeb API 2 –