Library to write excel file

I am using the Microsoft Excel Interop library to export an Excel file. However, the limit of this library is as follows:

  • Require that the user's computer must have Microsoft Excel.
  • When writing content, Microsoft Automation must be open for automation.
  • To save a file, the user must do this manually: click File → Save.

I need a library:

  • Writing contents to memory in Excel format.
  • Save this content to a file programmatically.

Notes: I am using .net 2.0 and C #.

Thank.

+5
source share
3 answers

I used EPPlus to read / write .xlsx and it worked great

+10

All Articles