How do I preserve '<' and '>' in my output?
CF8, SQL Server, Windows Server
When I print the contents of a text field that contains a '<' or a '>'. the output truncates. The part that I find odd is as follows:
"Administer Meds if pain level <2 on the pain scale" truncates after the <.
"Administer Meds if pain level < 2 on the pain scale" prints the entire content, note the SPACE after the <.
Since the input fields are free text, I can't guarantee that tne end users will ALWAYS put a space after these characters.
My output code is as simple as follows: <td>#GetOIG.Goals#</td>
I presume this has to do with the <> characters traditionally being part of the opening and closing of the td tags, but this is just a guess. I inherited this project, and this issue is just being brought to my attention.
