Hey everyone,
I have a JSP page which accepts SQL queries, performs them then returns the results in a table. A few of the results occasionally have HTML tags in them i.e. - a result will return:
This is the returned result! I have <br> and <hr> tags!
When this gets put through the code to handle the return and place it into a table it will actually "render" the <br>
and <hr>
tags as HTML, but I want it to simply show the actual <br>
and <hr>
tags.
Currently the return is printed using <%=colvalue %>
How can I do this?