Hi -- I am trying to convert Html to XLS. The Html I try to convert is having rowspan and colspan, Aspose works beautifully (good job on that one!). But now I found an issue that if both rowspan and class attributes sets, Cells library throws above mentioned exception.
Here is the html code:
string html = @"<table>
<thead>
<tr>
<th rowspan=""2"">Col1</th>
<th rowspan=""2"">Col2</th>
<th rowspan=""2"">Number Correct</th>
<th rowspan=""2"">Col3</th>
<th rowspan=""2"">Percentile</th>
<th rowspan=""2"">Col4</th>
<th rowspan=""2"" class="""">Col5</th>
<th class=""someclass"">Col6</th>
</tr>
<tr>
<th class=""classx"">label</th>
</tr>
</thead>
</table>";
If you remove the class attribute in the above html, it works. Enclosed the full working code to duplicate the issue. Thanks.