I have the following code:
<CFOUTPUT QUERY="Design"><body bgcolor="#Body_Attribute1#" link="#Body_Attribute2#" alink="#Body_Attribute3# vlink="#Body_Attribute4#">
<font face="#Font#">#Header#
#SearchResults_Body#
#Footer#
</font></body></CFOUTPUT>
The Field 'SearchResults_Body' contains the following code:
<CFOUTPUT QUERY="SearchResults"><p><font size="2">• <a href="display_article.cfm?ID=#ID#&Client_Name=myjobcoach">#Headline#</a></font></p></CFOUTPUT><br><br>
When I run the page, it simply displays the code above as if I left out the CFOUTPUT tags. How can I make it so that it will work?
<CFOUTPUT QUERY="Design"><body bgcolor="#Body_Attribute1#" link="#Body_Attribute2#" alink="#Body_Attribute3# vlink="#Body_Attribute4#">
<font face="#Font#">#Header#
#SearchResults_Body#
#Footer#
</font></body></CFOUTPUT>
The Field 'SearchResults_Body' contains the following code:
<CFOUTPUT QUERY="SearchResults"><p><font size="2">• <a href="display_article.cfm?ID=#ID#&Client_Name=myjobcoach">#Headline#</a></font></p></CFOUTPUT><br><br>
When I run the page, it simply displays the code above as if I left out the CFOUTPUT tags. How can I make it so that it will work?