水晶报表里面的 有一SQL查询语句  select * from tb
web 页面读取报表:方法 abc()如下DataSet ds=new DataSet();(ds数据依照select * tb where id="****",能查出来数据,ds也不为空)//绑定    CrystalReportViewer ID是CRV ,CrystalReportSource ID是CRS
CRS.ReportDocument.Load(Server.MapPath("报表路径"));
CRS.ReportDocument.SetDataSource(ds);
CRS.DataBind();
CRV.ReportSource = CRS;
CRV.DataBind();在按钮的Click 事情 abc();
为什么 我一点按钮就出现 “您请求的报表需要更多信息 ”。
大家帮帮忙哦