我有一个 default.aspx (c#) 页面,它有一个简单的 Post AJAX 调用,WebMethod
它返回一个 JSON 对象,这样我就可以填充一个 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;
}