RE: cfoutput#lots_of_stuff$/cfoutput

2000-05-14 Thread Dave Watts
What about : cfoutput blah blah blah blah #variable# blah blah blah blah blah blah blah #variable# blah blah blah blah #variable# blah blah blah blah blah /cfoutput VS blah blah blah blah cfoutput #variable# /cfoutput blah blah blah blah

Re: cfoutput#lots_of_stuff$/cfoutput

2000-05-14 Thread Howie Hamlin
I think you will find that the difference (if any) is negligible. The reason is that ColdFusion has to parse the entire contents of the template whether you have a comment block, cfoutput block, or whatever. There is no way that an interpretive parser would not have to parse every character

Re: cfoutput#lots_of_stuff$/cfoutput

2000-05-13 Thread Fred T. Sanders
Yes. - Original Message - From: "Todd Ashworth" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 13, 2000 11:12 AM Subject: cfoutput#lots_of_stuff$/cfoutput I was just curious. Does the amount of stuff between cfoutput tags affect the speed at which a page is

cfoutput#lots_of_stuff$/cfoutput

2000-05-13 Thread Todd Ashworth
I was just curious. Does the amount of stuff between cfoutput tags affect the speed at which a page is processed? Would cfoutput blah blah blah blah blah blah blah blah blah blah blah #variable# blah blah blah blah blah blah blah blah blah /cfoutput be slower than blah blah blah blah

RE: cfoutput#lots_of_stuff$/cfoutput

2000-05-13 Thread Bert Dawson
What about : cfoutput blah blah blah blah #variable# blah blah blah blah blah blah blah #variable# blah blah blah blah #variable# blah blah blah blah blah /cfoutput VS blah blah blah blah cfoutput #variable# /cfoutput blah blah blah blah blah blah

Question about CFOUTPUT, grouping

2000-05-11 Thread Lola Lee
I have a question about using GROUP in CFOUTPUT. What I want to accomplish is: 1. Select records for a certain range of period, and insert into SQL query to pull up matching records. This is being done by passing variables, and it's working; the query named "recorddump" matches

Re: cfoutput

2000-04-02 Thread Amar Desai
Works out great, thanks Fred From: "Fred Sanders" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: cfoutput Date: Sun, 2 Apr 2000 00:16:31 -0600 anytime you've got to output a single # while in a cfoutput/cfoutput you have to "escape it" or

cfoutput

2000-04-01 Thread Amar Desai
Need a help here, this is a sample of the code how can I use the color code "#FF" in the cfoutput tag so that I do not get an error, since "#" cannot be used within the cfouput tag.I have tried several way but none seem to help... cfoutput query="x" tr tdfont

Re: cfoutput

2000-04-01 Thread Don Vawter
Escape the pound - color="##ff" - Original Message - From: "Amar Desai" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 01, 2000 7:35 PM Subject: cfoutput Need a help here, this is a sample of the code how can I use the color code "#F

Re: cfoutput

2000-04-01 Thread Fred Sanders
anytime you've got to output a single # while in a cfoutput/cfoutput you have to "escape it" or have two ## together. so instead if #FF you'll need ##FF. Your other option is to just not have a # or ## at all, but while it works, its not up to standards, and we kno

<    5   6   7   8   9   10