ReportViewer1.LocalReport.ReportPath = Server.MapPath("reports/DETAILS.rdlc");
ReportDataSource rdS = new ReportDataSource("PERSONAL", GetData());
ReportViewer1.LocalReport.DataSources.Clear();
ReportViewer1.LocalReport.DataSources.Add(rdS);
ReportParameter rp = new ReportParameter("Year", ListYear.SelectedValue);
ReportViewer1.LocalReport.SetParameters(new ReportParameter[] { rp });
i have a listbox with year and another with month
i need that the report when generated by default shld be of current month & year
when the users selects the month or and year from the listbox i shld get the reposrt accordingly
i get error when passng parameters
i tried using even serverreport instead of local
when using local i get report path not set