You need to extract the data through a <cfquery... first.
 
<cfquery name="myquery">
SELECT * FROM mytable
</cfquery>
 
<cfoutput query="myquery">
#field1#
#field2#
...
</cfoutput>
 

================================
Gary L. Alford
Assembly Inspector, Plant 6
Bell Helicopter Textron
(817) 280-6233
Fax: (817) 278-6233
mailto:[EMAIL PROTECTED]
================================

-----Original Message-----
From: Neal Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 21, 2003 11:17 AM
To: [EMAIL PROTECTED]
Subject: cfoutput issue...

Hello Everyone,

 

I'm having a strange problem, I have a few documents that are stored in a SQL table and these docs have a little CF code in them that's used to build some dynamic links to other docs. For some reason when I <cfoutput> the content of the doc it is not processing the CF code that's in them. I thought I use to be able to do this. Is there something that I am missing?

 

All I'm doing is a simple:

 

<cfoutput>

#mydoc#

</cfoutput>

 

Thanks for any help on this.

 

 

 

 

Reply via email to