gpt4 book ai didi

c# - 以编程方式将数据源绑定(bind)到报表服务器中的 rdl - SSRS

转载 作者:行者123 更新时间:2023-11-30 22:47:03 25 4
gpt4 key购买 nike

我已经完成了一个 asp.net 应用程序来生成特定数据的报告。最初我创建了本地报告 (.rdlc) 来生成报告。我为每个 rdlc 创建了单独的 .xsd 并设计了报告。我以编程方式构建数据集并将其绑定(bind)到 rdlc。我使用以下代码将数据源绑定(bind)到报告 -

rptMyReport.LocalReport.ReportPath = Server.MapPath(srdlcName);
rptMyReport.LocalReport.DataSources.Add(rds);

现在我已经将所有 rdlc 转换为 rdl,遵循 this msdn article我已经将报告发布到报告服务器。

rptMyReport.ServerReport.ReportServerUrl = new System.Uri("http://ReportServer/ReportServer");
rptMyReport.ServerReport.ReportPath = "/ReportFolder/ReportName";

现在如何以编程方式将数据源设置为报告?

最佳答案

这项工作是不可能的。你应该在你的 rdl 报告中创建你的数据源。您必须编写报告数据收集所需的查询。您可以将此查询用作文本或存储过程。您可以将参数传递给此查询并过滤查询的输出。您只能像这样将参数传递给 rdl 报告:

ReportParameter[] Params = new ReportParameter[1];
Params[0] = "Parameter Value";
ReportViewerControl.ServerReport.SetParameters(Params);

关于c# - 以编程方式将数据源绑定(bind)到报表服务器中的 rdl - SSRS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2360992/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com