up vote 2 down vote favorite
3

I want to generate simple excel spreadsheets with only tabular data that opens in excel when the user clicks a button or a link on a asp.net page. I would like suggestions of good 3rd party components that generates the excel file.

A must: native 97-2003 xls files, simple, not expensive.

Don't want: office automation, csv/html/text-solutions (due to annoying security warnings in Vista)

link|flag

50% accept rate

7 Answers

up vote 2 down vote

Try Aspose.Cells. It's good!

link|flag
I've used Aspose.Cells too and I agree. Fast and easy – Anjisan Oct 17 '08 at 13:02
They are also much more expensive than the alternatives :) – Ilya Kochetov Oct 17 '08 at 13:06
up vote 2 down vote

My answer from a very similar question: TMS Flexcel Studio

They are 129 EUR per developer or 500 EUR for site license

link|flag
up vote 1 down vote

SpreadsheetGear will read / write native Excel and execute formulas without requiring that Excel be installed on your server. It's about $1000 for a developers license with unlimited distribution.

link|flag
up vote 1 down vote

You can also use Office Open XML formats. These are straight XML files so you can use XmlTextWriter or XElement in ASP.NET. Check out http://msdn.microsoft.com/en-us/library/aa338205.aspx

link|flag
up vote 0 down vote

OWC works well

You may also be able to hook into the MS Jet engine (its old, but will let you do xls formats)

link|flag
up vote 0 down vote

We went with http://www.tmssoftware.com/site/flexcelnet.asp">TMS Flexcel Studio. It's easy to use for simple stuff and comes at a good price for a site license. For advanced formatting you use a separate sheet which is a bit funky. The documentation is alright.

link|flag
up vote 0 down vote

I use Syncfusion's XlsIO. Quite happy with it.

"XlsIO can be used to generate a new XLS document from scratch, extract data from an existing spreadsheet document or even edit an existing spreadsheet."

  • numerous formatting options are available for customizing the look and feel of the cells in the worksheet.
  • advanced support for working with Formulas in cells.
  • advanced support for manipulating the worksheet.
  • has APIs for reading and writing comments for cells in a worksheet.
  • advanced support for creating and modifying Excel charts inside a workbook.
  • high performance for generating Excel files with large number of rows and columns.
  • can work with spreadsheets that are stored as streams and can also save to a stream.
  • Excel 2007 Support
link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.