jlnorsworthy
jlnorsworthy

Reputation: 3974

Read content of Word file in C# without using Word Application

I"m looking to read the contents of a Word file on an application running on a webserver - without having word installed. Does a native .net solution for this exist?

Upvotes: 2

Views: 1715

Answers (3)

sendreams
sendreams

Reputation: 389

i have used several SDK, for now, the best is Aspose.words, the openxml sdk 2.5 is also a nice choice, but the api is too low, so if you use openxml sdk that means will be writing more code, and remenber user openxml sdk tool together, it is a nice tool can make coding simple. you can look this video for a overview: how to use openxml sdk tool

another choice: GemBox.Document, a commercial option, cheaper than aspose.words.

Upvotes: 0

ConsultUtah
ConsultUtah

Reputation: 6819

There are commercial options too, but that's what OpenXML is all about as long as you are dealing with docx files only. If you need doc files, you will probably need to purchase Aspose's Aspose.Words for .NET.

Upvotes: 1

Steve Danner
Steve Danner

Reputation: 22168

Aspose makes a paid solution for doing just about anything with any Office format:

http://www.aspose.com/categories/.net-components/aspose.words-for-.net/default.aspx

Upvotes: 4

Related Questions