> I'm familiar with CF processing (I'm CFMX 7 certified )
Hmmm.
> however you
> misunderstood my question, sorry if I was'nt clear.
Well I understood *what you said*, but...
> Let me put it this way, how do I do this:
> <CFOUTPUT>
> <CFINCLUDE TEMPLATE="text.txt">
> </CFOUTPUT>
> text.txt (includes the following text: my name is
#name#)
... this is different from what you said you were doing.
CF files are executed as discrete units. When you
<cfinclude> something,
it is not copy and pasting the text within the file into the
body of the
calling file (which is what one might reasonably expect is
happening, given
how "include" constructs work in some other languages such as
C).
So the <cfoutput> tags in one file have effect only on
the text within that
very file (*literally* the exact text in the file, not what
might be
inferred as being "within" it, via some CF construct such as
<cfinclude>);
it has no effect on the text in your included file.
You need the outputs in your text file.
--
Adam