简体   繁体   中英

Asp.net SSRS 2008 (RDLC) export to Excel Report

I need to write a SSRS Report (RDLC) with Sub Report and directly export the report to Excel on asp.net button click event.

Could someone please help me with whether this can be done without having to install SSRS ie no liscense required?

The SSRS Report needs to render each Groups in to separate sheet.eg if there are 3 States, the report should show the data for each states in to different excel sheets.

I tried to do this with Crystal report, but crystal report doesn't support multiiple sheets.

Thank you.

I'm pretty sure that every option to parse SSRS reports available from Microsoft requires a license and installation, either on the server or on the client, wherever the .rdl is parsed. (Does Microsoft distribute any software that doesn't require some sort of license agreement?)

But some of the licenses do not require purchase and are freely available. .rdlc files can be parsed and displayed in a ReportViewer control, which requires .NET and the "Microsoft Report Viewer 2010 Redistributable Package" If you look on that page, you'll see that SSRS is only required for Server processing mode.

There is a property "Pagebreak" you have to set on the tablix or table or other element to force a new tab, and then set the property "Pagename" on both the element before the pagebreak and the element after the pagebreak. These names will appear on the tabs when the report is exported to Excel. For more info : Report Design: Naming Excel Worksheets and Exporting to Microsoft Excel (Report Builder and SSRS) .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM