Hi,
I am using Aspose.word .net 4.2.1 to save word document as Html file. The results file contains  character. Could you please help me to check what's the reason? Here is my code and zip file.
Aspose.Words.Document wordDoc = new Aspose.Words.Document(inputFile);
//Save the document in html format into a memory stream.
System.IO.MemoryStream stream = new System.IO.MemoryStream();
wordDoc.Save(stream, Aspose.Words.SaveFormat.Html);
stream.Position = 0;
System.IO.StreamWriter writer = new System.IO.StreamWriter(outputFile);
System.IO.StreamReader reader = new System.IO.StreamReader(stream);
writer.Write(reader.ReadToEnd());
Thanks,
Jessica