including a String with HTML format

Hello,

Any idea how I can include in a JSP page a String attribute of a bean, so that the format included in the String is being interpreted?

example:

String htmlCode = "<td> textext </td>"

it should display: "textext" (which I will put inside a <tr> </tr>)

something like <tr> <c:out value="${SessionBean.htmlText}"/> </tr>

but c:out is also displaying the TD's...

Thanks!

[465 byte] By [javosoa] at [2007-10-2 7:32:23]
# 1
read the manual<c:out value="${SessionBean.htmlText}" escapeXml="false" />
bsampieria at 2007-7-16 21:12:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
grazie bsampieri !that's another question...Where do I find a good "Manual"?Regards
javosoa at 2007-7-16 21:12:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Sun has a JSTL web site, Apache has documentation on their site somewhere.
bsampieria at 2007-7-16 21:12:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...