[Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Jamie Jackson
Please tell me if the following is possible, and how: I want to stifle the output of the area between cf_MyTag and /cf_MyTag. Here is a simplified example: I the following output: Hello World, I do want to display this sentence. ### Calling script ###: cf_MyTag Hello, World, I do NOT want to

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Jamie Jackson
Got this reply via email, and it does exactly what I needed... Thanks Bryan. Tuesday, July 17, 2001 1:03 PM My posts don't seem to go through for a long time so I am sending this to you directly. Try saving the content in a variable first. cfset content = thistag.generatedContent then clear

RE: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Raymond Camden
is the Force, and a powerful ally it is. - Yoda -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 11:38 AM To: CF-Talk Subject: [Custom Tag Question] ThisTag.GeneratedContent... Please tell me if the following is possible, and how: I

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Nick McClure
In the end portion of the tag you need to set ThisTag.GeneratedContent to nothing. Do this after you output what you need to output. At 11:38 AM 7/17/2001 -0400, you wrote: Please tell me if the following is possible, and how: I want to stifle the output of the area between cf_MyTag and

RE: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Dave Watts
Please tell me if the following is possible, and how: I want to stifle the output of the area between cf_MyTag and /cf_MyTag. Yes, it's possible. Simply clear the value of ThisTag.GeneratedContent when you're done with it. ### MyTag.cfm (custom tag) ###:

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Eric Dawson
] To: CF-Talk [EMAIL PROTECTED] Subject: [Custom Tag Question] ThisTag.GeneratedContent... Date: Tue, 17 Jul 2001 11:38:28 -0400 Please tell me if the following is possible, and how: I want to stifle the output of the area between cf_MyTag and /cf_MyTag. Here is a simplified example: I the following

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Jochem van Dieten
Jamie Jackson wrote: Please tell me if the following is possible, and how: I want to stifle the output of the area between cf_MyTag and /cf_MyTag. Here is a simplified example: I the following output: Hello World, I do want to display this sentence. ### Calling script ###: cf_MyTag

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Bryan LaPlante
] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 10:38 AM Subject: [Custom Tag Question] ThisTag.GeneratedContent... | Please tell me if the following is possible, and how: I want to stifle | the output of the area between cf_MyTag and /cf_MyTag. | | Here is a simplified example: I