Hi all, hopefully this is a fairly basic question but I've got an HTML
string that's saved in the database. I need it to render on my product page (ex, string has "<strong>Running Shoes</strong>" and it needs to render on the
JSP as bold, etc)
Currently I'm trying to use <s

roperty like this:
<s

roperty value='product.longDescription'/>
to get the desired member from my Product object.
What's the best method to have the JSP actually render this HTML string and not just display all the tags?
Thanks!
Aaron