Hello,
I'm testing your brilliant control on huge DB with more 110 000 records.
I've found bug. If HTML data contains structure like:
To fix that you should add null check to CascadeStyles method of HtmlRenderer.Parse.DomParser class.
Replace string
I'm testing your brilliant control on huge DB with more 110 000 records.
I've found bug. If HTML data contains structure like:
<STYLE><em>
Then it will bomb with NullReferenceException.To fix that you should add null check to CascadeStyles method of HtmlRenderer.Parse.DomParser class.
Replace string
if (box.HtmlTag.Name.Equals("style", StringComparison.CurrentCultureIgnoreCase) && box.Boxes.Count == 1)
to:if (box.HtmlTag.Name.Equals("style", StringComparison.CurrentCultureIgnoreCase) && box.Boxes.Count == 1 && box.Boxes[0].Text != null)
Thanks.