It's really simple to do that with just a few lines of code. Here is how to:
Private Function RemoveHTML(ByVal str As String) As String
Dim RegExp As String = "<[^>]*>"Dim R As New Regex(RegExp) Return R.Replace(str, " ")
End FunctionAnd you can get the "clear" string for your label control (for example):
Label1.Text = RemoveHTML(TextBox1.Text)
Cheers