예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!base.IsPostBack)
     {
         this.Session["QuerySql"] = null;
         this.ltCustom.Text       = "<input type='text' id='text' name='text' class='border_radius'/>";
         PubFunction.BindMemLevelSelect(this.sltMemLevelID, true);
         PubFunction.BindShopSelect(this._UserShopID, this.sltShop, true);
         PubFunction.BindCustomField(this._UserShopID, this.sltCustomField, true, 1);
         PubFunction.BindUserSelect(this._UserShopID, this.sltMemUserID, true, false);
         if (PubFunction.curParameter.dataAuthority == 1)
         {
             if (this._UserShopID > 1)
             {
                 this.sltShop.Value = this._UserShopID.ToString();
             }
         }
         this.GetMemList(this.QueryCondition());
         this.SetQuickBtn();
         this.chkSms.Checked = this.curParameter.bolSms;
         PubFunction.BindCouponSelect(this.sltCoupon, false);
         this.btnAllMemPointReset.Visible = false;
     }
 }