user3203960
user3203960

Reputation: 45

Export SSRS local report to pdf Without Rendering it in report viewer

I want to write c# code to make Export SSRS local report to pdf Without Rendering it in report viewer

How can i do that?

Upvotes: 1

Views: 4260

Answers (2)

SqlACID
SqlACID

Reputation: 4014

You could do it without any C# by using the Subscriptions feature on the Report server, this has options to output in PDF to a file location, or send via email.

Upvotes: -2

tezzo
tezzo

Reputation: 11105

You can use LocalReport.Render method to obtain a Byte array that you can save using FileStream.

Upvotes: 3

Related Questions