Raj More
Raj More

Reputation: 48018

SSRS in .Net Windows Application

We have a C# Windows Application.

We also have SSRS reports.

Can we deploy the application so that the reports are rendered on the local machine rather than using a web server?

Upvotes: 1

Views: 1152

Answers (1)

jgallant
jgallant

Reputation: 11273

Yes.

You need to set the ReportViewer control to render the reports in local processing mode. You will need to use the WinForm version of the reportviewer control to accomplish this.

To set the ReportViewer to accept local data sources, you can set the ReportViewer.ProcessingMode property to local.

More info.

Upvotes: 1

Related Questions