Coger solo el texto de un string html
public string GetText(string text)
{
Regex htmlRegex = new Regex("<.*?>", RegexOptions.Compiled);
return htmlRegex.Replace(System.Web.HttpUtility.HtmlDecode(text), string.Empty);
}
Función genérica para eliminar el html de un string.