Hello!
I have html strings stored in a database, when I retrieve the html string and send the string through a struts form bean to the jsp, I see html tags in the resulting html render, it does not render the tags (explode the tags) for ex bold appears as tag in the output
<b>test</b>
and not as
test.
How do I get the htmel string from the form bean to render in an hteml as normal html and not physical tags?
Thanks for your help.