I have a SSRS 2005
report with two parameters. The CountID parameter is a queried value (From query
). I am calling this report from ASP.Net 2.0 using following approach and it works fine.
window.location.href= strRepServer + strReport + "&rc:Parameters=false&rs:ClearSession=true&plantcd=" + strPlantCD + "&CountID=" + strCountID;
Note that we are passing only one string value from ASPX page for the parameter CountID. Still it works fine.
Now, I modified the code to use reportviewercontrol using following code. But when the report renders, it says “The 'CountID' parameter is missing a value”. I have referred following two posts – but it didn’t help. Any idea how to make it work?
- Pass Multi value parameter to SSRS from UI
- Passing a Multi-value parameter to the ReportViewer control
Note: I understand that if I make the CountID as non-queried
or making it as textbox will resolve the issue. But I need to make code working without changing the rdl
file. [Reason being the rdl works fine with previous approach (calling report without reportviewer)]
CODE
rvInvalidPackageSKUs.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
rvInvalidPackageSKUs.ServerReport.ReportServerUrl = New Uri("http://myserver/ReportServer/")
rvInvalidPackageSKUs.ServerReport.ReportPath = "/MyFolder/SubFolder/MyReport"
Dim rpPlant As New ReportParameter
rpPlant.Name = "plantcd"
rpPlant.Values.Add("23")
'Dim rpCountID As New ReportParameter
'rpCountID.Name = "CountID"
'rpCountID.Values.Add("1")
Dim rpCountID As ReportParameter
rpCountID = New ReportParameter("CountID")
Dim valuesArray As String() = New String() {"x", "y", "z"}
rpCountID.Values.AddRange(valuesArray)
Dim paramList As New Generic.List(Of ReportParameter)
paramList.Add(rpPlant)
paramList.Add(rpCountID)
rvInvalidPackageSKUs.ServerReport.SetParameters(paramList)
rvInvalidPackageSKUs.ServerReport.Refresh()
Parameter in RDL