public void ProcessRequest(HttpContext context)
 {
     context.Response.ContentType = "text/plain";
     try
     {
         if (Globals.GetCurrentManagerUserId() <= 0)
         {
             context.Response.Write("{\"type\":\"error\",\"data\":\"请先登录\"}");
             context.Response.End();
         }
         int    exchangeId  = int.Parse(context.Request["id"].ToString());
         string productIds  = context.Request["products"];
         string pNumbers    = context.Request["pNumbers"];
         string points      = context.Request["points"];
         string eachNumbers = context.Request["eachNumbers"];
         if (PointExChangeHelper.EditProducts(exchangeId, productIds, pNumbers, points, eachNumbers))
         {
             context.Response.Write("{\"type\":\"success\",\"data\":\"\"}");
         }
         else
         {
             context.Response.Write("{\"type\":\"success\",\"data\":\"写数据库失败\"}");
         }
     }
     catch (Exception exception)
     {
         context.Response.Write("{\"type\":\"error\",\"data\":\"" + exception.Message + "\"}");
     }
 }
Exemple #2
0
 public void ProcessRequest(System.Web.HttpContext context)
 {
     context.Response.ContentType = "text/plain";
     try
     {
         int    exchangeId  = int.Parse(context.Request["id"].ToString());
         string productIds  = context.Request["products"];
         string pNumbers    = context.Request["pNumbers"];
         string points      = context.Request["points"];
         string eachNumbers = context.Request["eachNumbers"];
         bool   flag        = PointExChangeHelper.EditProducts(exchangeId, productIds, pNumbers, points, eachNumbers);
         if (flag)
         {
             context.Response.Write("{\"type\":\"success\",\"data\":\"\"}");
         }
         else
         {
             context.Response.Write("{\"type\":\"success\",\"data\":\"写数据库失败\"}");
         }
     }
     catch (System.Exception ex)
     {
         context.Response.Write("{\"type\":\"error\",\"data\":\"" + ex.Message + "\"}");
     }
 }