As daveamour said, you will need to create your parameters. You can do this by assigning ReportParameter array to the ServerReport.SetParameters
for reference vist: http://msdn.microsoft.com/
// Forexample if there are two date parameters: StartDate & FinishDate
ReportParameter startDateParam = new ReportParameter();
startDateParam.Name = "StartDate";
startDate.Values.Add("1/2/
ReportParameter finishDateParam = new ReportParameter();
finishDateParam.Name = "FinishDate";
finishDate.Values.Add("1/2
// Set the report parameters for the report
rvDailyIVR.ServerReport.Se
new ReportParameter[] { startDateParam, finishDateParam });
Main Topics
Browse All Topics





by: daveamourPosted on 2009-02-22 at 23:50:08ID: 23708973
It looks to me like your parameter is thinking it is called '1/2/'2009'
Do you have parametes set iwhich the report expects to receive? I would think you will need to create a parameter matching this name and having a value of '1/2/'2009'