I have email addresses encoded with HTML character entities. Is there anything in .NET that can convert them to plain strings?
Use Server.HtmlDecode to decode the HTML entities. If you want to escape the HTML, i.e. display the < and > character to the user, use Server.HtmlEncode.
Server.HtmlDecode
<
>
Server.HtmlEncode