RDLC报告中未找到参数错误

时间:2015-08-22 06:28:15

标签: c# sql-server visual-studio-2012 rdlc

我正在尝试将参数发送到RDLC报告,但它无法正常工作。下面给出了详细的屏幕截图。请帮助。

  

RDLC报告中的参数

enter image description here

  

编码   enter image description here

     

错误

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这段代码。

            ReportParameterCollection reportParameters = new ReportParameterCollection();
            reportParameters.Add(new ReportParameter("OPBALANCE", "Some value"));
            reportViewer.LocalReport.SetParameters(reportParameters);