using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Script.Serialization;
namespace JqgridDemo
{
??? /// <summary>
??? /// $codebehindclassname$ 的摘要说明
??? /// </summary>
??? [WebService(Namespace = "http://tempuri.org/")]
??? [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
??? public class GetData : IHttpHandler
??? {
??????? public void ProcessRequest(HttpContext context)
??????? {
??????????? //context.Response.ContentType = "text/plain";
??????????? string pageIndex = context.Request["page"];
??????????? string rows = context.Request["rows"];
??????????? context.Response.Write(new Customer().GetData(pageIndex,rows));
??????? }
??????? public bool IsReusable ??????? { ??????????? get ??????????? { ??????????????? return false; ??????????? } ??????? } ??? }