Never fear .... dumb question man is here!

2005-11-29 Thread Will Tomlinson
How do you properly load text an app? unsigned! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware

Re: Never fear .... dumb question man is here!

2005-11-29 Thread Will Tomlinson
Hack, dumb question man can't even spell right. That's load TEST. :) unsigned again! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent

Re: Never fear .... dumb question man is here!

2005-11-29 Thread John Wilker
at my last job we used Win Runner to load test the website. On 11/29/05, Will Tomlinson [EMAIL PROTECTED] wrote: Hack, dumb question man can't even spell right. That's load TEST. :) unsigned again! ~| Logware

RE: Never fear .... dumb question man is here!

2005-11-29 Thread Munson, Jacob
I asked a Macromedia employee at CFUnited, and he recommended http://www.opensta.org/. Never tried it though. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 29, 2005 2:54 PM To: CF-Talk Subject: Re: Never fear dumb question man

Re: Never fear .... dumb question man is here!

2005-11-29 Thread James Holmes
I have used OpenSTA and it's great (and open source). On 11/30/05, Munson, Jacob [EMAIL PROTECTED] wrote: I asked a Macromedia employee at CFUnited, and he recommended http://www.opensta.org/. Never tried it though. -- CFAJAX docs and other useful articles:

Re: Never fear .... dumb question man is here!

2005-11-29 Thread Will Tomlinson
K, thanks guys! I appreciate the info! Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

RE: Dumb Question About CFPARAM

2004-12-28 Thread Gaulin, Mark
: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 1:35 AM To: CF-Talk Subject: Dumb Question About CFPARAM I'm trying to optimize some queries and I've got a dumb question. The current code is like this: !--- Check to see if the key exists --- cfquery

RE: Dumb Question About CFPARAM

2004-12-28 Thread Dave Watts
My question is with CFPARAM - what's up in this case? Will it work fine when all of the parameters all nested in IF statements like this? Will there just be a big long list of BIND variables and will the statement (INSERT or RUN) use the right ones? Am I making any sense? Assuming that

RE: Dumb Question About CFPARAM

2004-12-28 Thread Jim Davis
Yup - of course CFQUERYPARAM is what I meant. The mind does strange thigs at three AM. ;^) Thanks, all - it does seem to work just fine. Unfortunately it doesn't offer as much of a speed boost as I was hoping, but I'll take what I can get. Jim Davis

RE: Dumb Question About CFPARAM

2004-12-28 Thread Gaulin, Mark
-Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 11:46 AM To: CF-Talk Subject: RE: Dumb Question About CFPARAM Yup - of course CFQUERYPARAM is what I meant. The mind does strange thigs at three AM. ;^) Thanks, all - it does seem to work just fine

RE: Dumb Question About CFPARAM

2004-12-28 Thread Jim Davis
-Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 11:54 AM To: CF-Talk Subject: RE: Dumb Question About CFPARAM You might squeak out a bit of performance by making a stored procedure out of it and using an optimistic update strategy

RE: Dumb Question About CFPARAM

2004-12-28 Thread Gaulin, Mark
Subject: RE: Dumb Question About CFPARAM -Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 11:54 AM To: CF-Talk Subject: RE: Dumb Question About CFPARAM You might squeak out a bit of performance by making a stored procedure out

RE: Dumb Question About CFPARAM

2004-12-28 Thread Jim Davis
-Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 1:05 PM To: CF-Talk Subject: RE: Dumb Question About CFPARAM Do you use the SQL Profiler to monitor your sql server? (This is not the stuff in Query Analyzer... it's a standa-alone app

Dumb Question About CFPARAM

2004-12-27 Thread Jim Davis
I'm trying to optimize some queries and I've got a dumb question. The current code is like this: !--- Check to see if the key exists --- cfquery ... SELECT SessionKey FROM Table WHERE SessionKey = cfqueryparam ... /cfquery !--- If it's a new entry

RE: One more dumb question

2003-10-17 Thread Eric Creese
I do not understand this -Original Message- From: Austin Govella [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 5:21 PM To: CF-Talk Subject: Re: One more dumb question Can you change your character encoding to UTF-8? That might enter the apostrophes correctly (sans box

Dumb Question

2003-10-16 Thread Eric Creese
I have a dumb question. when using CFIF I want to check against multiple criteria. Example: cfif url.page NEQ 'test' OR 'tech' OR 'contact' I get an error when doing this. can some post the correct way to do this. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Dumb Question

2003-10-16 Thread Greg.Morphis
cfif url.page NEQ 'test' OR url.page NEQ 'tech' OR url.page NEQ 'contact' -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 4:07 PM To: CF-Talk Subject: Dumb Question I have a dumb question. when using CFIF I want to check against multiple

RE: Dumb Question

2003-10-16 Thread Raymond Camden
You must have a complete comparison for each - ie - cfif x is 1 or x is 2 or y is z or m is 3 this may be easier to read cfif (x is 1) or (x is 2) or (y is z) or (m is 3) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Dumb Question

2003-10-16 Thread Casey C Cook
Probably something like cfif url.page NEQ 'test' OR url.page NEQ 'tech' OR url.page NEQ 'contact' Thanks, CC [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Dumb Question

2003-10-16 Thread Bryan Stevenson
cfif url.page NEQ 'test' OR url.page neq 'tech' OR url.page neq 'contact' OR cfset CheckList = test,page,contact cfif NOT ListFind(CheckList,URL.Page) Cheers - Original Message - From: Eric Creese To: CF-Talk Sent: Thursday, October 16, 2003 2:06 PM Subject: Dumb Question I have

RE: Dumb Question

2003-10-16 Thread Barney Boisvert
:07 PM To: CF-Talk Subject: Dumb Question I have a dumb question. when using CFIF I want to check against multiple criteria. Example: cfif url.page NEQ 'test' OR 'tech' OR 'contact' I get an error when doing this. can some post the correct way to do this. [Todays Threads] [This Message

RE:SOLVED Dumb Question

2003-10-16 Thread Eric Creese
THANKS EVERYONE! -Original Message- From: Eric Creese Sent: Thursday, October 16, 2003 4:07 PM To: CF-Talk Subject: Dumb Question I have a dumb question. when using CFIF I want to check against multiple criteria. Example: cfif url.page NEQ 'test' OR 'tech' OR 'contact' I get an error

Re: Dumb Question

2003-10-16 Thread Charlie Griefer
:06 PM Subject: Dumb Question I have a dumb question. when using CFIF I want to check against multiple criteria. Example: cfif url.page NEQ 'test' OR 'tech' OR 'contact' I get an error when doing this. can some post the correct way to do this. [Todays Threads] [This Message] [Subscription

Re: Dumb Question

2003-10-16 Thread Les Mizzell
Example: cfif url.page NEQ 'test' OR 'tech' OR 'contact' Would cfwitch do this better? - depending on exactly what you're trying to do -- Les Mizzell - “Mihi placent, O Pincerna! Virent ova! Viret perna! Dapem posthac non arcebo. Gratum tibi me praebebo.” [Todays

One more dumb question

2003-10-16 Thread Eric Creese
I am passing from a form a textarea field that has word like home's, they'll. I have not had problems with this before but I am experiencing issues with the single quote being saved as a Square. Any help would be appreciated. My condolences to all you Cubie fans, I was pulling for your team even

Re: One more dumb question

2003-10-16 Thread Bryan Stevenson
what database? - Original Message - From: Eric Creese To: CF-Talk Sent: Thursday, October 16, 2003 2:30 PM Subject: One more dumb question I am passing from a form a textarea field that has word like home's, they'll. I have not had problems with this before but I am experiencing issues

RE: One more dumb question

2003-10-16 Thread Eric Creese
Access -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 4:36 PM To: CF-Talk Subject: Re: One more dumb question what database? - Original Message - From: Eric Creese To: CF-Talk Sent: Thursday, October 16, 2003 2:30 PM Subject

RE: One more dumb question

2003-10-16 Thread Eric Creese
Should I do a replace before submitting? -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 4:36 PM To: CF-Talk Subject: Re: One more dumb question what database? - Original Message - From: Eric Creese To: CF-Talk Sent: Thursday

Re: Dumb Question

2003-10-16 Thread Calvin Ward
I might try a variation of this... cfset pageList = 'test,tech,contact' cfif NOT ListFindNoCase(pageList,url.page) Do this thing... /cfif - Calvin - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Thursday, October 16, 2003 5:09 PM Subject: RE: Dumb Question cfif

Re: Dumb Question

2003-10-16 Thread Bryan Stevenson
touche! ;-) - Original Message - From: Calvin Ward To: CF-Talk Sent: Thursday, October 16, 2003 2:32 PM Subject: Re: Dumb Question I might try a variation of this... cfset pageList = 'test,tech,contact' cfif NOT ListFindNoCase(pageList,url.page) Do this thing... /cfif - Calvin

Re: One more dumb question

2003-10-16 Thread Bryan Stevenson
: Thursday, October 16, 2003 2:30 PM Subject: One more dumb question I am passing from a form a textarea field that has word like home's, they'll. I have not had problems with this before but I am experiencing issues with the single quote being saved as a Square. Any help would be appreciated. My

dumb question client variables

2003-01-29 Thread Tony Weeg
hi there. If I wanted to remove the value of a client variable I have set for a particular user, lets just say, emailAddress, and they check a checkbox that says, Forget my email address, would the best way to do that, be to have this code... cfset client.EmailAddress = to just zero the value

Re: dumb question client variables

2003-01-29 Thread Dave Carabetta
hi there. If I wanted to remove the value of a client variable I have set for a particular user, lets just say, emailAddress, and they check a checkbox that says, Forget my email address, would the best way to do that, be to have this code... cfset client.EmailAddress = to just zero the value

RE: dumb question client variables

2003-01-29 Thread Tony Weeg
workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 4:22 PM To: CF-Talk Subject: Re: dumb question client variables hi there. If I wanted to remove the value of a client

RE: dumb question client variables

2003-01-29 Thread Andy Ousterhout
, January 29, 2003 2:39 PM To: CF-Talk Subject: dumb question client variables hi there. If I wanted to remove the value of a client variable I have set for a particular user, lets just say, emailAddress, and they check a checkbox that says, Forget my email address, would the best way to do

Apache for W2K, CF5 - probably dumb question, but..

2003-01-24 Thread Stephen Hait
I need to develop with both CF and ASP - is there a way to do this on W2K with Apache? If I run Apache with CF5, do I then also need to somehow run IIS for ASP? Sorry if that sounds stupid :-) Stephen Which version of Apache for W2K is best to use with CF5? Thanks, Stephen

RE: Apache for W2K, CF5 - probably dumb question, but..

2003-01-24 Thread Dave Watts
I need to develop with both CF and ASP - is there a way to do this on W2K with Apache? If I run Apache with CF5, do I then also need to somehow run IIS for ASP? You'll need IIS for your ASP development. You can, however, run both IIS and Apache on a single machine; either on different ports

CFFILE/VARIABLES - Dumb Question

2002-01-18 Thread Jim Vosika
No question is too dumb until you read below. I don't know if I am just having a brain fart or what, I am still new to CF but I should know this: I am uploading a file to my server using CFFILE then I want to write the location of the file to the database in this format:

Re: CFFILE/VARIABLES - Dumb Question

2002-01-18 Thread Jennifer Larkin
At 02:13 AM 1/18/02 -0600, you wrote: No question is too dumb until you read below. I don't know if I am just having a brain fart or what, I am still new to CF but I should know this: I am uploading a file to my server using CFFILE then I want to write the location of the file to the database in

RE: CFFILE/VARIABLES - Dumb Question

2002-01-18 Thread Jim Vosika
That works good enough for me! Thanks for your late-night help! Jim -Original Message- From: Jennifer Larkin [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 2:22 AM To: CF-Talk Subject: Re: CFFILE/VARIABLES - Dumb Question At 02:13 AM 1/18/02 -0600, you wrote: No question

RE: CFFILE/VARIABLES - Dumb Question

2002-01-18 Thread Pascal Peters
Vosika [mailto:[EMAIL PROTECTED]] Sent: vrijdag 18 januari 2002 9:14 To: CF-Talk Subject: CFFILE/VARIABLES - Dumb Question No question is too dumb until you read below. I don't know if I am just having a brain fart or what, I am still new to CF but I should know this: I am uploading a file to my

Really Dumb question help??

2000-12-02 Thread ibtoad
Ok maybe I have been staring at tis screen to long but how do I set a checkbox to unchecked using a Cfset tag? cfset checkbox="?" If I use cfset checkbox="" it comes back checked. Thanks, Rich ~~ Structure your ColdFusion code with Fusebox. Get

Re: Really Dumb question help??

2000-12-02 Thread Michael Thomas
CFPARAM NAME="Checked" DEFAULT="FALSE" TYPE="boolean" CFSET Checked="TRUE" CFIF #Checked# IS "TRUE" input type="checkbox" checked CFELSE input type="checkbox" /CFIF Sincerely, Mike From: "ibtoad" [EMAIL PROTECTED

Re: Really Dumb question help??

2000-12-02 Thread Jennifer
At 05:38 PM 12/2/00 -0500, you wrote: Ok maybe I have been staring at tis screen to long but how do I set a checkbox to unchecked using a Cfset tag? cfset checkbox="?" If I use cfset checkbox="" it comes back checked. try setting it to 0 or off.

Re: [Follow up] Really Dumb question help??

2000-12-02 Thread Michael Thomas
CTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Really Dumb question help?? Date: Sat, 02 Dec 2000 17:38:06 -0500 Ok maybe I have been staring at tis screen to long but how do I set a checkbox to unchecked using a Cfset tag? cfset checkbox="?" If I use cfse

Dumb question

2000-11-17 Thread Eric Dawson
what is the ascii code for a space? For netscape I need to replace spaces in the url to %20. what's the best approach? replace(space,"%20",) _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share

Re: Dumb question

2000-11-17 Thread Howie Hamlin
- Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, November 17, 2000 8:39 AM Subject: Dumb question what is the ascii code for a space? 20 in Hex or 32 in decimal For netscape I need to replace spac

RE: Dumb question

2000-11-17 Thread Neil Clark
use this a href="#URLEncodedFormat(http://www.infoseek.com/hello world)#"my link/a N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com

RE: Dumb question

2000-11-17 Thread Jason Lees (National Express)
- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: 17 November 2000 13:40 To: CF-Talk Subject: Dumb question what is the ascii code for a space? For netscape I need to replace spaces in the url to %20. what's the best approach? replace(space,&quo

RE: Dumb question

2000-11-17 Thread Mike Connolly
Use URLEncodeFormat() on your string. Eg. URLEncodeFormat("My Test String") comes out as My%20Test%20String -Original Message- From: Eric Dawson [SMTP:[EMAIL PROTECTED]] Sent: 17 November 2000 13:40 To: CF-Talk Subject: Dumb question what is the ascii code f

Re: Dumb question

2000-11-17 Thread Tage Widsell
Isn't URLEncoded() a better solution? /Tage -- From: "Eric Dawson" [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Dumb question Date: fre 17 nov 2000 14.39 what is the ascii code for a space? For netscape I need to replace spaces in the url to %20. what'

Re: Dumb question

2000-11-17 Thread Eric Dawson
I didn't know it existed. Once again this man says. buythemanabeer.com should really exist. Thanks to all who responded (before I finished reading my email btw) Eric From: "Tage Widsell" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Dum

Re: Dumb question

2000-11-17 Thread Michael Thomas
: "Tage Widsell" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Dumb question Date: Fri, 17 Nov 2000 15:02:00 +0100 Isn't URLEncoded() a better solution? /Tage -- From: "Eric Dawson" [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTE