1

What are the best libraries/plugins for .NET to access Word (create Word files and such)? I have used the Winnovative Excel one so I might check out their Word one, but what are some others?

Deduplicator
  • 44,692
  • 7
  • 66
  • 118
cdub
  • 24,555
  • 57
  • 174
  • 303

2 Answers2

5

I have used the free Open SDK 2.0 from Microsoft in the past, primarily to manipulate Office 2010 documents on the server (where installing the Office components is not recommended).

Since the Office 2010 file formats (e.g., XLSX, PPTX, etc.) are simply zip files containing a bunch of XML files, they can easily be manipulated without having to install any Office component.

Philipp Schmid
  • 5,778
  • 5
  • 44
  • 66
3

I've always been partial to Aspose.Words. They have a whole line of components for other document types: PDF, Excel, etc.

Doozer Blake
  • 7,677
  • 2
  • 29
  • 40
  • 1
    Iv'e also used Aspose Words allot. Main benefit is the multiple output formats. (pdf, odt, doc...) – Magnus Oct 11 '11 at 17:39