我正在使用如下的ajax调用:
$(function () {
$.ajax({
type: 'POST',
url: 'frmHistoryReportFinal.aspx/GetDataTable',
data: json_data,
contentType: 'application/json;charset=utf-8',
dataType: 'json',
success: function (responseText) {
if (responseText.d == "")
return;
parsedData = JSON.parse(responseText.d);
alert(parsedData);
count = 0;
},
error: function (xhr, textStatus, errorThrown) {
//process the error
alert(xhr);
alert(textStatus);
alert(errorThrown);
}
});
});
当我从C#代码隐藏返回一小组数据时。 ajax调用运行良好。但是当我有一个包含更大数据的json字符串时,说返回了200条记录,那么ajax调用会给出错误("内部服务器错误")。 请帮我解决这个问题,因为我通常需要处理大型数据集。