I have this textbox in my webapp for help desk software and I want the user to be able to put HTML code in it and it still show as the code. Currently it renders the object that it specifies when you review the saved HTML code on another day. I want it so when it is pulled from the database and shown on the page - it will show the actual code, not render it. Remember the text will always be different (because a user types it in as a ticket note) and renders later. So what would I put in this html to prevent that:
<tr>
<td valign=top>
Note:
</td>
<td colspan=2>
<%=rstTicket("ticketnote")%>
</td>
</tr>