I am attempting to implement a form containing an HTML editor where users can input group messages. The HTML editor writes this content to a database table.
Now, I'm trying to display this content (with formatting such as <span style="color:#ff0000;"> NEWS</span> ) so that it shows up in a separate page like a modal popup.
Thank you for the quick reply. Below, please find a string of html-formatted text written to the database table:
----------
test 09 <span style="color: #ffffff; background-color: #33ff00;">blue warning</span>
-------
My goal is to display this on a control that can interpret the formatted text to show up on a pop-up page.
Manoj Patil
The problem may be occur by double quote.
Try with replacing double quote by single and let me know.
Thank you for the quick reply. Below, please find a string of html-formatted text written to the database table:
----------
test 09 <span style="color: #ffffff; background-color: #33ff00;">blue warning</span>
-------
My goal is to display this on a control that can interpret the formatted text to show up on a pop-up page.