Friends , I have developed a simple application using c# , it has two rdlc reports
i used this below code to bind datasource to report viewer
this.reportViewer1.LocalReport.ReportPath = @"C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\reports\reports\Report1.rdlc";
reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("customer", dt.Tables[0])) ;
this.reportViewer1.RefreshReport();
But when the report is generated ,it is empty report no data will displayed , any opinion???