是否可以在编辑/运行模式下从 C# 程序打开报告

发布于 2024-12-15 06:28:52 字数 139 浏览 2 评论 0原文

我想在 Visual Studio 中的 ReportViewer 控件中显示我的报告,并通过单击按钮在报告生成器中以编辑/运行模式打开它们

我不知道如何从我的程序中打开报告生成器

我有一个报告服务器,

谢谢任何帮助

I wanna show my reports in reportviewer control in visual studio and open them in edit/run mode in report builder by clicking a button

I dont know how to open report builder from my program

I have a report server

thanks any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤云独去闲 2024-12-22 06:28:52
WebBrowser wb = new WebBrowser();
wb.Navigate("http://localhost/ReportServer/ReportBuilder/ReportBuilder_3_0_0_0.application?/Reports/ProductsReport");

其中 Reports/ProductsReport 是我的报告的路径

,请参阅 这个

WebBrowser wb = new WebBrowser();
wb.Navigate("http://localhost/ReportServer/ReportBuilder/ReportBuilder_3_0_0_0.application?/Reports/ProductsReport");

where Reports/ProductsReport is the path to my report

see this

流云如水 2024-12-22 06:28:52

如果我正确理解你的问题,那么这就是答案:

http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/8e0d8b0f-b1c2-44cc-9c52-9f9c1b82281e/

将 SSRS 2008 R2 报告嵌入表单的最佳方法是部署
将报表发送到报表服务器,然后使用远程执行模式
在报表查看器控件中。本地使用的 RDLC 格式
执行模式尚不支持较新的 RDL 规范,即
使用 Report Builder 3.0 创建。

If I'm understanding your question correctly, then this is the answer:

http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/8e0d8b0f-b1c2-44cc-9c52-9f9c1b82281e/

The best way to embed an SSRS 2008 R2 report into a form is to deploy
the report to the report server and then use the Remote execution mode
in the Report Viewer control. The RDLC format used with local
execution mode doesn't yet support the newer RDL specifcation that is
created with Report Builder 3.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文