This is the VB code I am using...on the report side, the parameter names have to match EXACTLY to be picked up.
HTH
Mark
Dim myparam As ReportParameter
Dim myparams
As
New List(Of ReportParameter)
myparam = New ReportParameter("Letter", Server.HtmlDecode(Activity.Description))
mark@markhem...
Member
19 Points
80 Posts
Re: Passing a Multi-value parameter to the ReportViewer control
Oct 23, 2008 02:29 PM|LINK
This is the VB code I am using...on the report side, the parameter names have to match EXACTLY to be picked up.
HTH
Mark
Dim myparam As ReportParameter Dim myparams As New List(Of ReportParameter) myparam = New ReportParameter("Letter", Server.HtmlDecode(Activity.Description))myparams.Add(myparam)
myparam = New ReportParameter("FSize", Fsize)myparams.Add(myparam)
ReportViewer1.LocalReport.SetParameters(myparams)