SSRS 2005 export to csv - I don't want the header?

回眸只為那壹抹淺笑 提交于 2019-12-02 04:58:04

问题


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?


回答1:


I finally figured out why changes to the rsreportserver.config didn't take.

  1. I didn't capitalize "Configuration" and "/Configuration".
  2. Re-starting reporting services doesn't reload this configuration file; re-starting IIS reloads this configuration file.


来源:https://stackoverflow.com/questions/7880275/ssrs-2005-export-to-csv-i-dont-want-the-header

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!