SSRS RDL Export to PDF using C #

We are running the SSRS project and we need to check the reports for different parameters.

Therefore, I want to create an application that automatically converts rdl (SSRS) to pdf using parameters.

Thank you Kieran

+4
source share
1 answer

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

+7
source

All Articles