Hi , Could any one please tell me the procedure to convert word document to html page
i am able to convert the html page to word document using stream reader but images in it or missing. could u please tell me the procedure or any API to achieve the above specified task.
i want solution other than using Microsoft.Interop.Word as my architecture said it is not reliable dll for server side coding in Asp.net
Thanks in advance...
Loading
Suthish NairPosted Feb 13, 2012, 9:37 AM
Convert Microsoft Office Word to other formats (pdf, html, rtf, xps)
Derek StevensPosted Feb 18, 2021, 3:50 PM
Alex SmithPosted Oct 19, 2014, 10:55 PM
hi, Pramod Since you do not need MS Office to be installed on developer machine, I recommend C# Word component which enables programmers to manipulate Word files in .NET platform without MS automation. More specific please check - Convert Word from/to HTML with Embedded Image.
Hope it works for your situation.
Edda BrownPosted Aug 8, 2014, 5:33 AM
// Convert Word to HTML.
It is from this Word processing library (for .NET).DocumentModel.Load("Sample.docx").Save("Sample.html");
// Convert HTML to Word.
DocumentModel.Load("Sample.html").Save("Sample.docx");
Pramod Kumar NandagiriPosted Feb 16, 2012, 9:08 AM
I want same for open document to html and html to open document conversion, i am developing this time application in a system it doesn't conatain Ms office so Microsoft.Office.Interop.Word.dll will not support.
So with out ms office word document , i want to convert the open source document to html and reverse
Could you please help me on this thanking you...