Hi All
I have designed a rdlc file, using Business Object and table control, and added it on Report Viewer control. I am facing the excepiton
Exception descritption: A data source instance has not been supplied for the data source 'Ebwl_eOBR_Library_PositionException_PositionExcep tionCollection'.
The code wriiten in C# on .cs file , to bind the data source with report is -
ReportDataSource rd = new ReportDataSource("ds1", PositionExceptionComponent.GetPositionExceptions() );
ReportViewer1.LocalReport.ReportPath = "C:\\Documents and Settings\\user\\Desktop\\CODE\\CODE SEPT 21\\sept 10\\Prudential[1].eOBR.PositionException\\Prudential.eOBR.PositionE xception\\PositionExceptionLibrary\\Prudentia\\R.r dlc";
ReportViewer1.LocalReport.DataSources.Add(rd);
ReportViewer1.DataBind();
ReportViewer1.LocalReport.Refresh();
Can anybody PLEASE tell me what would be the reason..
Thanks
Naveen Duggal