Getting actual text in freetextbox control

I am using FreeTextBox Management

at asp.net. When I get text in my code, I get HTML code with all formatting.

If I want to get the actual text (i.e. only text without html tags), then how should I get it.

+4
source share
1 answer

Try

Your_FreeTextBox.HtmlStrippedText 

Gets text devoid of HTML tags

http://www.freetextbox.com/docs/ftb3/html/P_FreeTextBoxControls_FreeTextBox_HtmlStrippedText.htm

+5
source

Source: https://habr.com/ru/post/1387387/


All Articles