Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSRS RDL Export to PDF by C#

We are doing an SSRS project and we need to test the reports for different parameters.

Hence I want to create an application which will automatically convert rdl(SSRS) to pdf by using the parameters.

Thanks, Kiran

like image 275
KiranPudi Avatar asked Apr 16 '13 12:04

KiranPudi


1 Answers

Use the ReportExecutionService class. If you have any report parameters to set, use SetExecutionParameters() and Render() with Format=PDF. Code samples at the bottom of the Render method page.

like image 166
Bryan Avatar answered Nov 01 '22 11:11

Bryan