Conversion of Word document into plain text file through ASP.Net 2.0

  • Thread starter Thread starter Harish
  • Start date Start date
H

Harish

Hi

Please let me know how i can convert the word document into text file.
In this i am uploading a word document in web application and want to
convert it into text file.

Thanks,
Harish
 
Word files are not made up of text, they contain different types of objects,
so you'll need to open the documents and strip the text from them which is
not an easy task from asp.net. That said, its do-able and this link will
get you started in understanding how to automate it from .net.

http://support.microsoft.com/kb/311452/
http://www.codeproject.com/csharp/convertdocintootherformat.asp

You'd be better of getting a product like activePDF though which can convert
between document types though.

Regards

John Timney (MVP)
 
Back
Top