Currently my SSRS 2005 server is exporting the names of the textboxes as the header when a report is exported to CSV. I've tried changing the device information settings in the rsreportserver.config file:
<Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.CsvRenderer.CsvReport,Microsoft.ReportingServices.CsvRendering">
<configuration>
<DeviceInfo>
<NoHeader>true</NoHeader>
</DeviceInfo>
</configuration>
</Extension>
After re-starting Reporting Services, I'm still getting the header. Is the change I made correct?