示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!base.IsPostBack)
     {
         if (base.Request.QueryString["PID"] != null)
         {
             string pid = base.Request.QueryString["PID"];
             this.strPid = pid;
             if (pid == "149")
             {
                 this.txtDrawType.Value = "2";
                 PubFunction.BindShopSelectNew(this._UserShopID, this.sltShop, true, "2");
             }
             else if (pid == "150")
             {
                 this.txtDrawType.Value = "3";
                 this.ltlTitle.Text     = "主页 > 商家管理 >商家积分提现记录 ";
                 PubFunction.BindShopSelectNew(this._UserShopID, this.sltShop, true, "3");
             }
             else
             {
                 PubFunction.BindShopSelect(this._UserShopID, this.sltShop, true);
             }
         }
         this.BindExchangeList(this.QueryCondition());
         this.txtStartTime.Value = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1).ToString("yyyy-MM-dd");
         this.txtEndTime.Value   = DateTime.Now.ToString("yyyy-MM-dd");
     }
 }
示例#2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!base.IsPostBack)
     {
         this.txtReturnStartTime.Value = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1).ToString("yyyy-MM-dd");
         this.txtReturnEndTime.Value   = DateTime.Now.ToString("yyyy-MM-dd");
         if (base.Request.QueryString["PID"] != null)
         {
             string pid = base.Request.QueryString["PID"].ToString();
         }
         this.GetShopPointList(this.QueryCondition());
         PubFunction.BindShopSelectNew(this._UserShopID, this.sltShop, true, "3");
     }
 }
示例#3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!base.IsPostBack)
     {
         if (base.Request["ShopType"] != null)
         {
             this.txtShopType.Value = base.Request["ShopType"].ToString();
             PubFunction.BindShopSelectNew(this._UserShopID, this.sltShop, true, base.Request["ShopType"].ToString());
         }
         else
         {
             PubFunction.BindShopSelect(this._UserShopID, this.sltShop, true);
         }
         this.GetShopBuyCardRecordList(this.QueryCondition());
     }
 }