Reputation: 71
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
Upvotes: 5
Views: 8867
Reputation: 17703
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.
Upvotes: 6