0

How can I add new values to an uploaded application/vnd.ms-excel file in C#? Can anybody help?

Ry-
  • 218,210
  • 55
  • 464
  • 476
freethinker
  • 2,257
  • 4
  • 26
  • 49

1 Answers1

1

If you're using Excel 2007/2010 you can make use of Microsoft's added XML standard with various third party libraries.

I've used EPPlus in the past, but its license dictates if you release your project to the public you must release its source as well.

http://epplus.codeplex.com/

For that reason I've used ClosedXML to manipulate excel files (.xlsx and .xlsm). You open workbooks from a disk location, or from a filestream.

http://closedxml.codeplex.com/

James
  • 2,445
  • 2
  • 25
  • 35