示例#1
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            DataTable dt = bll.ShowType();

            context.Response.Write(JsonConvert.SerializeObject(dt));
        }