Is there an option for getting a html content

is there an option for getting a html content

Is there an option for getting html content from word document .

Hi there,

Thanks for your inquiry. It seems that you want to convert Word document to Html. Please use following code example to convert Word document to html. Hope this helps you.

// Load the document into
Aspose.Words.
Document doc = new Document(MyDir + "in.docx");
// Save document to html
doc.save(MyDir + "Out.html", SaveFormat.HTML);