0

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);

pnuts
  • 58,317
  • 11
  • 87
  • 139
S J Karthi
  • 51
  • 1
  • 6

1 Answers1

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