views:

74

answers:

2

Hi, 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.

+1  A: 

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.

Thorarin
thanks @thorarin its working nicely
TheVillageIdiot
A: 

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

Kane