I am trying to find out a control that will parse HTML in C#. It should display background colors, and everything else.
I have tried a couple of controls:
Web Browser - Does NOT display the background color.
RichTextBox - Does NOT display HTML, it only shows the HTML code for example:
<HTML>
<BODY>
<FONT COLOR="#123456">
HELLO
</FONT>
</BODY>
</HTML>
How would I get C# to parse the ENTIRE HTML contents, including the background color whether it changes every 30 seconds or not?
Maybe an HTML to RTF converted for the richtextbox control? And if so, how would I convert it?
BACKisn't a valid html tag as far as I know, so good luck getting that to show.<FONT>tag. Seriously. This is the 21st century now.