OT: Online Email Newsletter Services

2004-11-15 Thread Jeffrey Fongemie
Hi everyone, Sorry for the off topic post. Anyone have any good experiences with any of the online email-bulk-newsletter services? Can anyone recommend a good service? Thanks! Jeff -{ ~| Special thanks to the CF Community

cfsqltype question with Access database

2004-10-25 Thread Jeffrey Fongemie
Hi everyone, I have a tag input that needs cfsqltype for a given field. Would be CF_SQL_VARCHAR or CF_SQL_NUMERIC but I'm using Access database and the field in question is just a simple text field. Is there such ting as a CFSQLTYPE for an Access field? -Jeff

Looping Question

2004-09-07 Thread Jeffrey Fongemie
Hi everyone, I'm using a query and loop to fill a body onLoad statement for a _javascript_ image preload. So far I've got: body query=allphotos startrow=1 endrow=#allphotos.recordcount#cfoutput'photoslarge/#filenamelarge#',/cfoutput/cfloop) This works except that it puts a comma at the end

RE: Looping Question

2004-09-07 Thread Jeffrey Fongemie
On Tue, 7 Sep 2004 17:03:43 +0200, Pascal Peters wrote: body > query=allphotos'photoslarge/#filenamelarge#'cfif allphotos.recordcount NEQ allphotos.currentrow,/cfif/cfoutput) Pascal Perfect. Thanks! makes perfect sense, and so simple. -Jeff [Todays Threads] [This Message]

RE: sql question

2004-07-27 Thread Jeffrey Fongemie
Pascal Thank you. So easy! I was looking for a much more difficult solution! Jeff On Tue, 27 Jul 2004 21:02:43 +0200, Pascal Peters wrote: SELECT* FROM riders, races WHERE riders.raceid = races.raceid ORDER BY race_name cfoutput query=qRaces grouprace_name #qRaces.race_name# ...