Dynamic Doc / Docx Parsing to HTML

I’m reworking a document content and management system and looking for a solution to parse Microsoft Word (doc and Docx) into Html, including embedded images.
I already use your component for consumption of uploaded docs, and it works great. Can you tell me a little bit about what you would recommend for accomplishing what I described above?
Thanks,
CBB

This message was posted using Aspose.Live 2 Forum

Hi

Thanks for your inquiry. Aspose.Words supports wide set of document formats including HTML format. Using Aspose.Words you can convert your document to HTML:

Document doc = new Document(@"in.doc");
doc.Save(@"out.html");

Also, if you need that images were embedded into HTML document, you can use MHTML format, which is also supported by Aspose.Words.
Please let me know in case of any issues, I will be glad to help you.
Best regards.