在运行时修改SSRS中的SQL查询

时间:2010-09-20 20:35:05

标签: asp.net reporting-services

有没有办法在运行时使用某些代码修改SQL查询?我有一种情况,我有一个ASP.NET应用程序,我想在不添加参数的情况下将数据传递给SSRS报告。谢谢。

1 个答案:

答案 0 :(得分:0)

您可以将数据集从ASP.NET传递到ReportViewer控件。

DataSet ds = GetDataSet();
ReportViewer1.LocalReport.ReportPath = “ReportServer/myReport.rdlc”;
ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource(”ds”, ds.Tables[0]));