3

我有一个 ASP.NET 页面,它具有报表查看器控件以从报表管理器访问报表。

  • 我需要将此 ASP.NET 页面中的报表参数传递给报表服务器。
  • 我想根据登录的用户传递区域号,该区域号显示在 ASP.NET 页面的标签上。

谢谢。

4

1 回答 1

5

我假设您使用远程处理报告。

然后执行以下操作:

ReportParameter p = new ReportParameter("ParamName", "ParamVal");
reportViewer1.ServerReport.SetParameters(new ReportParameter[] { p });

来自: http: //msdn.microsoft.com/en-us/library/ms252178 (VS.80).aspx

很好的例子: http: //www.codeproject.com/KB/reporting-services/ReportViewer2005.aspx

于 2009-07-01T03:10:20.680 回答