tags:

views:

46

answers:

2

I'm going to start taking an excel file for a bulk member upload in my ASP.Net C# Web application.

Does anyone know of any good free libraries for parsing excel sheets or where I can find good documentation for parsing excel files?

There's only going to be one sheet in the workbook... I'm just looking for something to get me started.

+2  A: 

I like Excel Data Reader.

It's simple and easy to use. Supports Excel 97 through 2007.

Jay Riggs
I used this. You're right it is simple to use, thanks for the advice.
EJC
+1  A: 

You can use the Access Database Engine redistributable, and parse Excel files via ADO.NET.

Even though it's for "Access", it allows parsing of .xls and .xlsx files, as well. See the documentation on that page for connection string details.

Reed Copsey