Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Ian Lurie
Hi all, I've done this before but am having a post-halloween party moment: 1. I have a chunk of code that generates a drop-down menu. The menu's used again and again on a page. 2. I want to generate that code once, insert it into a variable, and then reuse it. That'll shave a LOT of time off the

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Robertson-Ravo, Neil (REC)
Tweaking - Friday Morning Brain Fart Hi all, I've done this before but am having a post-halloween party moment: 1. I have a chunk of code that generates a drop-down menu. The menu's used again and again on a page. 2. I want to generate that code once, insert it into a variable, and the

Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Michael Dinowitz
Why not generate the code, write it down to a flat file and then CFINCLUDE it? I do that with parts of the list archives and it's fast as hell. With the information stored in a variable (a memory scope would be needed) you have to reload it every time the CF server restarts. With a flat file, it st

Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread mynews
Ian, You can use #myValue# #myDropDown# David Murphy www.cfugcny.org = = = Original message = = = Hi all, I've done this before but am having a post-halloween party moment: 1. I have a chunk of code that generates a drop-down menu. The menu's used again and again o

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Andrew Tyrone
, 2002 11:29 AM > To: CF-Talk > Subject: Performance Tweaking - Friday Morning Brain Fart > > > Hi all, > > I've done this before but am having a post-halloween party moment: > > 1. I have a chunk of code that generates a drop-down menu. The menu's used > aga

Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Pete Ruckelshaus
01, 2002 11:29 AM Subject: Performance Tweaking - Friday Morning Brain Fart > Hi all, > > I've done this before but am having a post-halloween party moment: > > 1. I have a chunk of code that generates a drop-down menu. The menu's used > again and again on a page. > > 2.

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Mark A. Kruger - CFG
ce, then use it ina query driven email over and over again. It works well. -mk -Original Message- From: Ian Lurie [mailto:ian@;portentinteractive.com] Sent: Friday, November 01, 2002 10:29 AM To: CF-Talk Subject: Performance Tweaking - Friday Morning Brain Fart Hi all, I've don

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Ciliotta, Mario
: Performance Tweaking - Friday Morning Brain Fart if it's exactly the same output (html output), then you could use . Sytax is: blah 1 blah 2 blah 1 Watch out for . If you have set this, the cfcontent will only

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Andrew Tyrone
Mario [mailto:mario.ciliotta@;csfb.com] > Sent: Friday, November 01, 2002 1:46 PM > To: CF-Talk > Subject: RE: Performance Tweaking - Friday Morning Brain Fart > > > Hi all, > > Hate to ask this question, but is savecontent a 5.0 and above > tag. I am still in the 4.5

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Gene Kraybill
Yup, it was introduced in 5.0... Gene -Original Message- From: Ciliotta, Mario [mailto:mario.ciliotta@;csfb.com] Sent: Friday, November 01, 2002 1:46 PM To: CF-Talk Subject: RE: Performance Tweaking - Friday Morning Brain Fart Hi all, Hate to ask this question, but is savecontent a

RE: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Mark A. Kruger - CFG
: RE: Performance Tweaking - Friday Morning Brain Fart Hi all, Hate to ask this question, but is savecontent a 5.0 and above tag. I am still in the 4.5 world, starting to migrate to MX. Mario -Original Message- From: Mark A. Kruger - CFG [mailto:mkruger@;cfwebtools.com] Sent: Friday

Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Ian Lurie
e to MX. > > Mario > > -Original Message----- > From: Mark A. Kruger - CFG [mailto:mkruger@;cfwebtools.com] > Sent: Friday, November 01, 2002 12:06 PM > To: CF-Talk > Subject: RE: Performance Tweaking - Friday Morning Brain Fart > > > if it's exactly the

SOLVED Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread Ian Lurie
CF_Savecontent did the trick. No more Kit Kats for me... On 11/1/02 8:29 AM, "Ian Lurie" <[EMAIL PROTECTED]> wrote: > Hi all, > > I've done this before but am having a post-halloween party moment: > > 1. I have a chunk of code that generates a drop-down menu. The menu's used > again and again