You can create a function for removing html tags from html string. here it is:
Protected Function removeHTML(ByVal html As String) As String
If String.IsNullOrEmpty(html) Then
Return ""
Else
Return System.Text.RegularExpressions.Regex.Replace(html, "<[^>]*>", String.Empty)
End If
End Function
Happy Programming