有没有办法在运行时使用某些代码修改SQL查询?我有一种情况,我有一个ASP.NET应用程序,我想在不添加参数的情况下将数据传递给SSRS报告。谢谢。
答案 0 :(得分:0)
您可以将数据集从ASP.NET传递到ReportViewer控件。
DataSet ds = GetDataSet();
ReportViewer1.LocalReport.ReportPath = “ReportServer/myReport.rdlc”;
ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource(”ds”, ds.Tables[0]));