show/hide this revision's text 2 added 280 characters in body

If you're using VB.NET, You're looking for System.Web.HttpUtility.HtmlEncode(string).

Otherwise, I would loop through the string one character at a time and build up a new encoded string, replacing as you go. That way, you only need one pass through the string and a case statement for each character, and you're not going to re-encode an encoded character.

show/hide this revision's text 1

If you're using VB.NET, You're looking for System.Web.HttpUtility.HtmlEncode(string).