Hi.
I have converted an Excel document to HTML file with Aspose Cells for .NET(Aspose.Cells 7.4.3.2)
test code
Aspose.Cells.Workbook book = new Aspose.Cells.Workbook("c:\\Book1.xls");
HtmlSaveOptions options = new HtmlSaveOptions();
options.HtmlCrossStringType = HtmlCrossType.Default;
book.Save("c:\\out.html", options);
Please test the attachment xls file.
Issue:
firefox
Cell A2 overlaps into Cell C2.
internet explorer
Cell B2 hide Cell A2.
Thank you .