示例#1
0
 public void GetJudge(string id)
 {
     BLLManRoute route = new BLLManRoute();
     count = route.RetCount(id);
     object obj = new
     {
         num = count
     };
     string result = JsonConvert.SerializeObject(obj);
     Response.Write(result);
     Response.End();
 }