日期:2014-05-16 浏览次数:20368 次
List<Model_RsonsPerson> rsonsPersonList = new List<Model_RsonsPerson>();
rsonsPersonList = bllRsPerson.GetList(sqlText.ToString());
Dictionary<string, object> dict = new Dictionary<string, object>();
if (rsonsPersonList!=null)
{
dict.Add("total", rsonsPersonList.Count);
dict.Add("rows", rsonsPersonList);
}
else
{
dict.Add("total", 0);
dict.Add("rows", 0);
}
string temStr = JsonConvert.SerializeObject(dict);
context.Response.Write(temStr);
$.ajax({type:opts.method,url:opts.url,data:_5c7,dataType:"json",success:function(data){
_5c8(data);
}, error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.responseText); // IE10和IE8下都为空字符串
alert(XMLHttpRequest.status); // IE10 下为0 IE8下为12019
alert(XMLHttpRequest.readyState); IE10下为0 IE8下为4
alert(textStatus); IE10 和IE8下都为"error"
//_5c9.apply(this,arguments); 原来的源代码 注释掉了
}});