I am using Microsoft Excel Interop library for exporting Excel file. However, the limit of this library is that:
- Require the user's computer must have Microsoft Excel.
- When write the content, Microsoft Excel must be opened to automate.
- To save file, user must do manually: click on File -> Save.
I need a library:
- Write the content to memory with Excel format.
- Save this content to file programmatically.
Notes: I use .net 2.0 and C#.
Thanks.