RE: Using a counter variable

2002-11-26 Thread Eric Dawson
Survey Link ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldf

RE: Using a counter variable

2002-11-26 Thread Mosh Teitelbaum
[EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: Clark, Aimee [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 26, 2002 5:42 PM > To: CF-Talk > Subject: RE: Using a counter variable > > > Mosh, > I tried this and it did work, but, it&#

Re: Using a counter variable

2002-11-26 Thread Dina Hess
Aimee, This works for me: Counter = #counter# Survey Link Counter = #counter# ~Dina - Original Message - From: Clark, Aimee To: CF-Talk Sent: Tuesday, November 26, 2002 4:42 PM Subject: RE: Using a counter variable Mosh

RE: Using a counter variable

2002-11-26 Thread Clark, Aimee
ED]] Sent: Tuesday, November 26, 2002 3:41 PM To: CF-Talk Subject: RE: Using a counter variable You haven't made your counter variable persistent. Every time someone makes a new request of your application, Application.cfm creates a new variable called "counter" and sets it

RE: Using a counter variable

2002-11-26 Thread Boardwine, David L.
ession variable. I have to admit, I'm still learning the best practices with respect to "how" I should be doing this. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 3:24 PM To: CF-Talk Subject: RE: Using a counter

Re: Using a counter variable

2002-11-26 Thread Eric Dawson
lt;[EMAIL PROTECTED]> Subject: Re: Using a counter variable Date: Tue, 26 Nov 2002 14:43:48 -0700 Clark, Aimee writes: > I have an application in which I want every 7th record closed in a table to > generate an email asking the user to participate in a survey. > > I have in the appl

Re: Using a counter variable

2002-11-26 Thread Dina Hess
Your code, please? - Original Message - From: Clark, Aimee To: CF-Talk Sent: Tuesday, November 26, 2002 3:02 PM Subject: Using a counter variable I have an application in which I want every 7th record closed in a table to generate an email asking the user to participate

RE: Using a counter variable

2002-11-26 Thread Brian Ledwith
t, and when it gets to 7 (or a multiple of 7), you'll see "Generate Email". HTH ~bgl --> -Original Message- --> From: Clark, Aimee [mailto:[EMAIL PROTECTED]] --> Sent: Tuesday, November 26, 2002 1:03 PM --> To: CF-Talk --> Subject: Using a counter variable -

RE: Using a counter variable

2002-11-26 Thread Mosh Teitelbaum
//www.evoch.com/ > -Original Message- > From: Clark, Aimee [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 26, 2002 4:03 PM > To: CF-Talk > Subject: Using a counter variable > > > I have an application in which I want every 7th record closed in > a table to > genera

RE: Using a counter variable

2002-11-26 Thread Clark, Aimee
for this type of scenario? -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 3:24 PM To: CF-Talk Subject: RE: Using a counter variable Aimee, A bit more info would be helpful. Are you trying to do this all in one request? what sort

RE: Using a counter variable

2002-11-26 Thread Clark, Aimee
n variable. I have to admit, I'm still learning the best practices with respect to "how" I should be doing this. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 3:24 PM To: CF-Talk Subject: RE: Using a counter vari

Re: Using a counter variable

2002-11-26 Thread charlie griefer
Clark, Aimee writes: > I have an application in which I want every 7th record closed in a table to > generate an email asking the user to participate in a survey. > > I have in the application.cfm file. > > I have in my action page right after an update > that is done to the table. > > T

RE: Using a counter variable

2002-11-26 Thread Mark A. Kruger - CFG
--Original Message- From: Clark, Aimee [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 3:03 PM To: CF-Talk Subject: Using a counter variable I have an application in which I want every 7th record closed in a table to generate an email asking the user to participate in a survey. I ha

Using a counter variable

2002-11-26 Thread Clark, Aimee
I have an application in which I want every 7th record closed in a table to generate an email asking the user to participate in a survey. I have in the application.cfm file. I have in my action page right after an update that is done to the table. Then I have execute generating email

Re: Need help with using a counter variable within a page that send e mail to users

2002-10-04 Thread Sean A Corfield
On Friday, Oct 4, 2002, at 14:05 US/Pacific, Clark, Aimee wrote: > 1. I have a in the application.cfm. This will set counter to zero on every single page request which is probably not what you want. I think you want something like:

Re: Need help with using a counter variable within a page that send e mail to users

2002-10-04 Thread S . Isaac Dealey
Taking the long way 'round I suspect... This code requires only a single tag and accomplishes what you're looking for. When you want to change the frequency of the link, just change the "mod" value to the 1 in X value you want, like 7 or whatever... i.e. mailto:[EMAIL PROTECTED]> " sub

Need help with using a counter variable within a page that send e mail to users

2002-10-04 Thread Clark, Aimee
I need some help. I am trying to devise a way where every 2nd (eventually will be 7th) email sent out has a link in it that the users can click on that takes them to a survey that we would like for them to participate in. My logic so far is this: 1. I have a in the application.cfm. 2. Then in