public HttpResponseBase PromoShareConditionList()
 {
     PromoShareConditionQuery query = new PromoShareConditionQuery();
     List<PromoShareConditionQuery> store = new List<PromoShareConditionQuery>();
     string json = string.Empty;
     try
     {
         if (!string.IsNullOrEmpty(Request.Params["promo_id"]))
         {
             query.promo_id = Convert.ToInt32(Request.Params["promo_id"]);
         }
         PshareConMgr = new PromoShareConditionMgr(mySqlConnectionString);
         store = PshareConMgr.GetList(query);
         if (store.Count>0)
         {
             for (int i = 0; i < store.Count; i++)
             {
                 //處理數據使"條件名稱"與"對應值"顯示對應描述
                 //store[i].
             }   
         }
         IsoDateTimeConverter timeConverter = new IsoDateTimeConverter();
         timeConverter.DateTimeFormat = "yyyy-MM-dd HH:mm:ss";
         json = "{success:true,data:" + JsonConvert.SerializeObject(store, Formatting.Indented, timeConverter) + "}";
     }
     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:true,data:[]}";
     }
     this.Response.Clear();
     this.Response.Write(json);
     this.Response.End();
     return this.Response;
 }