j请问query下的ajax获得返回值,时而为空,时而不为空,这是怎么回事?
$.ajax({ url: "ShouYePaging.ashx", data: { "Pageindex": currentpage }, type: "post", dataType: "json", success: function (dataresults) { var d = eval(dataresults); public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain"; int model = 3000; context.Response.Write("{\"Count\":" + model +" }"); context.Response.End(); }