I am getting above error when trying to assign below string to HtmlTextBox.
"question 1 (tips: <P><SPAN style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-AU; mso-fareast-language: EN-US; mso-bidi-language: AR-SA" lang=EN-AU><SPAN style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-AU; mso-fareast-language: EN-US; mso-bidi-language: AR-SA" lang=EN-AU>After this is</SPAN></SPAN></P>)"
In the above code value is equal to above string. How can I solve this error?
Also I want to know how to use StripHTMLTags function. Or if there is any other way to remove HTML tags.
Above doesn't work. It gives an error saying that StripHTMLTags is not found.
Help would be appreciated....
"question 1 (tips: <P><SPAN style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-AU; mso-fareast-language: EN-US; mso-bidi-language: AR-SA" lang=EN-AU><SPAN style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-AU; mso-fareast-language: EN-US; mso-bidi-language: AR-SA" lang=EN-AU>After this is</SPAN></SPAN></P>)"
Telerik.Reporting.HtmlTextBox txtBox =
new
Telerik.Reporting.HtmlTextBox();
txtBox.Value = value;
Also I want to know how to use StripHTMLTags function. Or if there is any other way to remove HTML tags.
HtmlTextBox1.Value = StripHTMLTags(IncomingHTMLText);
Above doesn't work. It gives an error saying that StripHTMLTags is not found.
Help would be appreciated....