A: 

Use Regular expressions

Regex.Replace(msg, "<.*?>", string.Empty);
rdkleine
A: 

This should help you.

public string Strip(string text)
{
    return Regex.Replace(text, @”<(.|\n)*?>”, string.Empty);
}

to remove a perticular tag try this one http://urenjoy.blogspot.com/2008/10/remove-html-tags-from-string.html

zapping