I had fix that problem but i get the same problem when i'm using this code:
<!--- Top Image ---> <cfimport taglib="/farcry/fourq/tags" prefix="q4"> <!--- get parent nav node details ---> <q4:contentobjectget objectID="#request.navid#" r_stobject="stParent"> <!--- Loop through objects under parent ---> <cfloop from="1" to="#arrayLen(stParent.aObjectIds)#" index="item"> <!--- get object details ---> <q4:contentobjectget objectID="#stParent.aObjectIds[item]#" r_stobject="stObject"> <!--- check if object is a dmImage object ---> <cfif stObject.typename eq "dmImage"> <!--- display image ---> <cfoutput><img src="#application.url.webroot#/images/#stObject.imageFile#" width="495" height="144"></cfoutput> </cfif> </cfloop>
Hrmm... is <cfsetting enablecfoutputonly="yes"> set?
I also get a lot of blank lines and spaces when i'm using:
<con:container label="xxxxx">
On every <con:container> i get about 100 +++ blank lines :(
You should surround these container tags with </cfoutput> and <cfoutput>.
As a general rule, any non-html tag should be excluded from being cfoutput'ted.
-- tim
www.toolmantim.com
--- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
