Example #1
0
        protected void btnOpinionExcel_Click(object sender, EventArgs e)
        {
            string strSql = this.QueryCondition();
            int    Counts = this.NetPagerParameter.RecordCount;

            strSql += "and OnlineMessage.MemID=Mem.MemID and Mem.MemShopID=SysShop.ShopID";
            DataTable db = this.ProposalBll.GetProposalInfo(100000, 1, out Counts, new string[]
            {
                strSql
            }).Tables[0];

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