我正在通过VB.NET和ASP.NET将参数编程传递给SSRS报告.这似乎应该是一件比较简单的事情,但是我没有多少运气找到帮助.
有没有人有任何建议,去哪里去帮助这个,或者甚至一些示例代码?
谢谢.
解决方法
您可以执行以下操作:(它在本地报告中适用于全速SSRS报告,但在完全模式下,使用适当的类,参数部分保持不变)
LocalReport myReport = new LocalReport(); myReport.ReportPath = Server.MapPath("~/Path/To/Report.rdlc"); ReportParameter myParam = new ReportParameter("ParamName","ParamValue"); myReport.SetParameters(new ReportParameter[] { myParam }); // more code here to render report