JSON オブジェクトを返す単純な Post AJAX 呼び出しを含む default.aspx (c#) ページがあるWebMethod
ので、DataTable にデータを入力できます。ログインページを導入するまで、すべてうまくいきました。これで、ユーザーがログイン後にデフォルト ページにリダイレクトされたときに、投稿が FireBug に表示されなくなりました。
これは私のAJAX呼び出しです:
$.ajax({
type: 'POST',
url: '/Default.aspx/GetValueDateSummary',
contentType: 'json',
data: {},
sucess: function (response) {
renderTable(response.d);
},
error: function (errMsg) {
$('#errorMessage').text(errMsg);
}
});
});
コードビハインドは次のとおりです。
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json, UseHttpGet = true)]
public static List<ValueDateSummary> GetValueDateSummary()
{
some code in here.....
return drList;
}