コード例 #1
0
 public HttpResponseBase Temp2Pro()
 {
     string json = string.Empty;
     try
     {
         int writerId = (Session["caller"] as Caller).user_id;
         _productMgr = new ProductMgr(connectionString);
         string product_id = "0";
         if (!string.IsNullOrEmpty(Request.Form["OldProductId"]))
         {
             product_id = Request.Form["OldProductId"];
         }
         int productId = _productMgr.TempMove2Pro(writerId, COMBO_TYPE, product_id);
         if (productId != -1)
         {
             json = "{success:true,productId:" + productId + ",msg:'" + Resources.Product.SAVE_SUCCESS + "'}";
         }
         else
         {
             json = "{success:false,msg:'" + Resources.Product.SAVE_FAIL + "'}";
         }
     }
     catch (Exception ex)
     {
         Log4NetCustom.LogMessage logMessage = new Log4NetCustom.LogMessage();
         logMessage.Content = string.Format("TargetSite:{0},Source:{1},Message:{2}", ex.TargetSite.Name, ex.Source, ex.Message);
         logMessage.MethodName = System.Reflection.MethodBase.GetCurrentMethod().Name;
         log.Error(logMessage);
         json = "{success:false,msg:'" + Resources.Product.SAVE_FAIL + "'}";
     }
     this.Response.Clear();
     this.Response.Write(json);
     this.Response.End();
     return this.Response;
 }