TheVillageIdiot
TheVillageIdiot

Reputation: 40512

Reporting tool for Excel

We are developing a Asp.net 3.5 web application for a rather strict environment. We need to generate reports and export them to Excel.

Please suggest some tool which we don't need to install into GAC. Because to install anything into GAC we have to go through many hurdles.

Upvotes: 0

Views: 255

Answers (2)

Kane
Kane

Reputation: 16812

Another option if you don't want to generate the reports in a custom application could be to use Excel and call a web service to return the required data. http://weblogs.asp.net/erobillard/archive/2005/07/22/420289.aspx

Upvotes: 0

Thorarin
Thorarin

Reputation: 48516

Check out http://www.codeplex.com/ExcelPackage

It has some limitations, like no proper support for graphs, but you can get around that by predefining the graphs in a template file.

Upvotes: 1

Related Questions