RE: cfif in cfform error (Duplicate) ??

2004-03-02 Thread Adkins, Randy
This must be a duplicate of the original from 2 hours ago. -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:48 PM To: CF-Talk Subject: cfif in cfform error I have a page that is completely generated with cfoutput.  I'm trying to put an cf

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thanks everyone.  It's working. I didn't need the second cfoutput, like a few of you said.  I had done it because it seemed like the pseudo code in my head was saying if this, then output that, else output that.  It had the word output in it. And Ian, thanks also for the string example.  That's gr

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thanks everyone.  It's working. I didn't need the second cfoutput, like a few of you said.  I had done it because it seemed like the pseudo code in my head was saying if this, then output that, else output that.  It had the word output in it. And Ian, thanks also for the string example.  That's gr

RE: cfif in cfform error

2004-03-02 Thread Burns, John
Well, why do you have the embedded tags?  You don't need the ones that are within the John Burns -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:32 PM To: CF-Talk Subject: Re: cfif in cfform error Thank you, you were correct th

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
I think this is a simple abstract of what you are trying to do. #aString# This produces the following result. one flew over the cookies nest {ts '2004-03-02 11:44:31'} I think you may just need to remove the 's from you string generation? HTH. -- Ian Skinner Web Prog

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
What is the inside 's supposed to do? Looking at the original page.       The name must have at least one letter.    I do not see any variables inside the cfoutput.  I'm not even sure why they exist?   Also It looks like you missed the tags.  Your output is outside the table structur

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
      The name must have at least one letter.    The second is not a closing tag, it's a second opening tag.  Misiing the "/"  IE Confidentiality Notice:  This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged infor

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thank you, you were correct that my second should have been a close tag.  This was because I was wrestling with anothe problem. Initially I had an error for a cfoutput within a cfoutput.  Because my whole page is a cfoutput this causes some problem in that way.   My structure is the external cfout

RE: cfif in cfform error

2004-03-02 Thread Tony Weeg
cfif must either encompass the entire cfform /cffrom area or be wholly in between. tony -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:52 PM To: CF-Talk Subject: RE: cfif in cfform error Basically it is telling you that you have a

RE: cfif in cfform error

2004-03-02 Thread Adkins, Randy
Basically it is telling you that you have a opening/closing CFIF statement without it's partner. Recheck your code for proper opening and closing statements -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:48 PM To: CF-Talk Subject: cfif