Hi,
I have code which generates some HTML, but when I try to output this content in a jsp all '<' are replaced with '<
' and all '>' with '>
'. Here is the piece which renders the result:
<c:out value="${data}"/>
Can someone please explain what causes the character replacement, and how it can be avoided?
PS: I've tried escapeXml='false' property of <c:out/>
tag, nothing at all is displayed.
Thanks, Natasha