Hi, Im a newbie in Delphi and Im coding my second application, this is pretty much like an RSS client, Im almost done just because when I try to display the HTML content from one xml child, I CANT see html code, so my question is, how can I decode the HTML?
My xml has the HTML like this one:
Code:
<
TR>
<
TD COLSPAN=3 HEIGHT=1>
<
/TD>
<
/TR>
I mean, no '<
', '>
', '&', '"' instead of these it has '>' , '<' and so on, so my question is, how can I decode the HTML?
when I get the element I have this:
Code:
strTemporal:=ListaCont.item(j).TextContent;
and strTemporal has all the content, just because it hasnt the HTML to display a normal code...
Can anyone help me?
Im using Delphi 7, and to parse the XML Im using OpenXML, XDOM 3.2 and Utility Library 2.0
thanks so much!