protected void btnWeiXinGiveMoneyExcel_Click(object sender, EventArgs e)
        {
            string strSql = " Mem.MemID=WeiXinGiveMoney.MemID and Mem.MemShopID=SysShop.ShopID";

            if (base.Request.QueryString["MoneyID"] != null)
            {
                strSql = strSql + "  and IsWin=1 and MoneyID=" + int.Parse(base.Request.QueryString["MoneyID"]);
            }
            if (base.Request.QueryString["MemID"] != null)
            {
                strSql = strSql + " and IsWin=1 and WeiXinGiveMoney.MemID=" + int.Parse(base.Request.QueryString["MemID"]);
            }
            int       Counts = this.NetPagerParameter.RecordCount;
            DataTable db     = this.bllMoney.GetListSP(1000000, 1, out Counts, new string[]
            {
                strSql
            }).Tables[0];

            DataExcelInfo.WeiXinGiveMoneyExport(db, this._UserName);
        }