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!

