Am I right in assuming that any time I want to output a value from a query I need to use <CFOUTPUT>#value#</CFOUTPUT>. Am I also right in assuming that if I am using that value inside of another CFML tag I do not need the <CFOUTPUT>, or is it only when I am using that value in a CF Function?
For Example
Would it be
<CFLOOP INDEX="X" FROM="1" TO="#query.RecordCount#">
Or
<CFLOOP INDEX="X" FROM="1" TO="<CFOUTPUT>#query.RecordCount#</CFOUTPUT>">
And if the first is true does this rule hold true for all CFML tags, or only certain tags?
Thanks
-Al
For Example
Would it be
<CFLOOP INDEX="X" FROM="1" TO="#query.RecordCount#">
Or
<CFLOOP INDEX="X" FROM="1" TO="<CFOUTPUT>#query.RecordCount#</CFOUTPUT>">
And if the first is true does this rule hold true for all CFML tags, or only certain tags?
Thanks
-Al