is it possible to open a report from c# program in

2019-08-03 02:35发布

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

2条回答
贪生不怕死
2楼-- · 2019-08-03 03:09
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

查看更多
干净又极端
3楼-- · 2019-08-03 03:32

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.

查看更多
登录 后发表回答