I get
"The report you requested requires further information"
no matter what i do to run a report, it displays few text boxes for entering login info on the IE 7.0
.NET 2005 (c#) front end
CR 10 advanced developer
ours is a table driven report display system.the user clicks on a report and based on the report i create a dataset and return it to report document. The reportdocument binds to crystalreport viewer and displays report. here is the code.
GetCrystalData is a method and is querying and returning data from SQl server 2000 in the form of a dataset. when i see ds in the debug mode it has data as well!
DataSet ds = new DataSet();
ds = GetCrystalData(m_sp_name, m_viewname, Request.QueryString["timeperiod"], m_ad_sp_name, m_ad_table_array, m_req_sp_params);
myReport.SetDataSource(ds);
CrystalReportViewer1.EnableDrillDown = true;
CrystalReportViewer1.ReportSource = myReport;
CrystalReportViewer1.DataBind();
Any ideas on fixing this please reply back..thank you very much in advance.
"The report you requested requires further information"
no matter what i do to run a report, it displays few text boxes for entering login info on the IE 7.0
.NET 2005 (c#) front end
CR 10 advanced developer
ours is a table driven report display system.the user clicks on a report and based on the report i create a dataset and return it to report document. The reportdocument binds to crystalreport viewer and displays report. here is the code.
GetCrystalData is a method and is querying and returning data from SQl server 2000 in the form of a dataset. when i see ds in the debug mode it has data as well!
DataSet ds = new DataSet();
ds = GetCrystalData(m_sp_name, m_viewname, Request.QueryString["timeperiod"], m_ad_sp_name, m_ad_table_array, m_req_sp_params);
myReport.SetDataSource(ds);
CrystalReportViewer1.EnableDrillDown = true;
CrystalReportViewer1.ReportSource = myReport;
CrystalReportViewer1.DataBind();
Any ideas on fixing this please reply back..thank you very much in advance.