我正在尝试将参数发送到RDLC报告,但是它不起作用。下面给出了详细的屏幕截图。请帮助。
RDLC报告中的参数
编码
错误
最佳答案
试试这个代码。
ReportParameterCollection reportParameters = new ReportParameterCollection();
reportParameters.Add(new ReportParameter("OPBALANCE", "Some value"));
reportViewer.LocalReport.SetParameters(reportParameters);
关于c# - RDLC报告中找不到参数错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32153105/