日期:2014-05-17 浏览次数:20555 次
$.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();
}