Re: CFFORM and CFIF Part II

2002-04-26 Thread Jaye Morris
head Why cant I use cfif inside of a cfinput tag? /head cfset this.Value=I know i cant use this. cfform method=post action=nocfif.cfm !--- it will not work like this --- cfinput type=text name=myFormElement value=cfif isDefined(this.Value)#this.Value#/cfif !--- or like this --- cfinput

RE: CFFORM and CFIF Part II

2002-04-26 Thread Ryan Pieszak
: Friday, April 26, 2002 8:48 AM To: CF-Talk Subject: Re: CFFORM and CFIF Part II head Why cant I use cfif inside of a cfinput tag? /head cfset this.Value=I know i cant use this. cfform method=post action=nocfif.cfm !--- it will not work like this --- cfinput type=text name=myFormElement value

RE: CFFORM and CFIF Part II

2002-04-26 Thread Dimple Goshar
what is the error that you r getting on the browser? -Original Message- From: Jaye Morris [SMTP:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 6:18 PM To: CF-Talk Subject: Re: CFFORM and CFIF Part II head Why cant I use cfif inside of a cfinput tag? /head cfset

RE: CFFORM and CFIF Part II

2002-04-26 Thread Tammy Hong
: Friday, April 26, 2002 8:01 AM To: CF-Talk Subject: RE: CFFORM and CFIF Part II what is the error that you r getting on the browser? -Original Message- From: Jaye Morris [SMTP:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 6:18 PM To: CF-Talk Subject: Re: CFFORM and CFIF Part

Re: CFFORM and CFIF Part II

2002-04-26 Thread Bud
On 4/26/02, Jaye Morris penned: !--- the only work around is this --- cfif isDefined(this.Value) cfinput type=text name=myFormElement value=#this.Value# cfelse cfinput type=text name=myFormElement value= /cfif /cfform Or cfparam name=this.value value= cfinput type=text name=myFormElement

RE: CFFORM and CFIF Part II

2002-04-26 Thread Matthew R. Small
To: CF-Talk Subject: RE: CFFORM and CFIF Part II be cause you are putting it inside the quotes so it thinks it's a literal string?? shouldn't it be(i think, please check) cfinput type=text name=myFormElement value=cfif isDefined(this.Value)#this.Value#cfelse/cfif -Original Message- From