代码如下                ReportDocument reportDoc = new ReportDocument();
                CrystalReportViewer CrystalReportViewer1 = new CrystalReportViewer();
                string reportPath = Server.MapPath("~\\Report\\BonusReport.rpt");
                reportDoc.Load(reportPath);                string sqlWhere = Request.QueryString["sqlWhere"];                bll_bonusList = new BLL_BonusList();
                DataSet dsDetail = bll_bonusList.GetList(sqlWhere);
                reportDoc.SetDataSource(dsDetail.Tables[0]);
                 
                               CrystalReportViewer1.ReportSource = reportDoc;
                CrystalReportViewer1.DataBind();前台代码    <div>
        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"    DisplayToolbar="True" />
    </div>
调试的时候datatable中都有数据的.求助大神