I have a custom web part that I am trying to use to pass a parameter to the SSRS Report Viewer web part. I connect my web part to the report viewer web part through the SharePoint Web UI and everything seems connected. However, it seems like the Report
Viewer is choosing to ignore it. Here is a simplified sample of what my custom web part is essentially doing:
public class ParameterProviderFeatureWebPart : Microsoft.SharePoint.WebPartPages.WebPart, Microsoft.SharePoint.WebPartPages.IFilterValues
{
#region IFilterValues Members
public string ParameterName
{
get
{
return "MarketFilter";
}
}
public System.Collections.ObjectModel.ReadOnlyCollection<string> ParameterValues
{
get
{
System.Collections.Generic.List<string> values = new System.Collections.Generic.List<string>
View Complete Post