Hai,
I am trying to generate a crystal report with datasource as a DataSet.
public CrystalReport1 oRpt ;
oRpt = new CrystalReport1();
//A DataSet dset1 is instantiated and populated.
oRpt.SetDataSource (dset1);
CrystalReportViewer1.ReportSource = oRpt;
CrystalReportViewer1.DataBind();
On execution of the webpage ,I got the following error
CrystalDecisions.CrystalReports.Engine.DataSourceException: Unknown Query Engine Error
Can anybody solve this error?
I am trying to generate a crystal report with datasource as a DataSet.
public CrystalReport1 oRpt ;
oRpt = new CrystalReport1();
//A DataSet dset1 is instantiated and populated.
oRpt.SetDataSource (dset1);
CrystalReportViewer1.ReportSource = oRpt;
CrystalReportViewer1.DataBind();
On execution of the webpage ,I got the following error
CrystalDecisions.CrystalReports.Engine.DataSourceException: Unknown Query Engine Error
Can anybody solve this error?