Formatting issue with Underline when saving as HTML

There is a field in the attached word document “December 11, 2000” that is underlined. Note that the blank characters are ascii code 160 (a normal space character will not underline properly). When I save the document in Aspose, the underlines for the spaces are gone. Saving the doc as HTML manually in Word does preserve the underlining.

You can use this code with the attached document:

Dim mylicense As New License
mylicense.SetLicense("Aspose.Words.lic")
doc = New Document(System.IO.Path.GetFullPath("C:\Foreign Filing (reminder).doc"))
doc.SaveOptions.HtmlExportHeadersFooters = False
doc.Save("\Foreign Filing (reminder).html")

Hello

Thanks for your request. I managed to reproduce the problem on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is fixed.
Best regards,

The issues you have found earlier (filed as 15223) have been fixed in this update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.

Thanks. That fixed it.