Is it from the server or in the application? I am using the below line to Export from rdl. byte[] bytes = reportViewer.ServerReport.Render("EXCEL", null, out mimeType, out encoding, out extension, out streamIds, out warnings);
Asked
Active
Viewed 292 times
1 Answers
0
The ServerReport part should have been a dead giveaway.
It is being generated from the Report Server.
From ReportViewer.ServerReport Property
Gets the instance of the Report class that is used when the ProcessingMode for the ReportViewer control is set to Remote.
Remote
Specifies remote processing mode against a Reporting Services report server.

Adriaan Stander
- 162,879
- 31
- 289
- 284
-
Thanks for the quick Response. How can i make it from the application instead of generated from Report Server? When I am using visual studio 2008 to create rdl report with toggle, In Excel the hiding property not working properly. When I use visual studio 2010 to create rdl report with toggle its working fine. – S J Karthi Dec 23 '13 at 06:02