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.
