show/hide this revision's text 2 added 44 characters in body

For parsing an Excel file, Excel itself is the best. It has a great object Model you can access via a COM interface.

For creating Excel, you can also use Excel, Or just create HTML or CSV file. This depends on your needs.

Excel is a bit heavy (read bad performande and memory consumption) for using it in a ASP.Net environment. If you need it for a desktop application however, you should use Excel itself. I'm doing this myself, and have found only minor troubles. It's very well documented on the MSDN site.

show/hide this revision's text 1

For parsing an Excel file, Excel itself is the best. It has a great object Model you can access via a COM interface.

For creating Excel, you can also use Excel, Or just create HTML or CSV file. This depends on your needs.

Excel is a bit heavy (read bad performande and memory consumption) for using it in a ASP.Net environment. If you need it for a desktop application however, you should use Excel itself. I'm doing this myself, and have found only minor troubles.