Hi there,
I have the following HTML code:
<P>Notes: Mails: <BR> 1. <A href="mailto:[email protected]">[email protected]</A></P>
and of course when I try to pass it to string it gives me error:
string s = "<P>Notes: Mails: <BR> 1. <A href="mailto:[email protected]">[email protected]</A></P>";
Is there a way I could just take that HTML and convert it to a .NET equivalent, preferably without changing the format?
thanks in advance.