Re: Call a cfc from a cfform

2004-11-17 Thread Nathan Strutz
Scott Brady wrote: > On Tue, 16 Nov 2004 20:23:57 -0500, Joe Rinehart <[EMAIL PROTECTED]> wrote: >>Rick, >> >>Some people have done as a way of using the CFC as a controller - >>using cflocation in the CFC to relocate after the opeation is done - i >>think www.benorama.com does this in his MVC exam

Re: Call a cfc from a cfform

2004-11-17 Thread Scott Brady
On Tue, 16 Nov 2004 20:23:57 -0500, Joe Rinehart <[EMAIL PROTECTED]> wrote: > Rick, > > Some people have done as a way of using the CFC as a controller - > using cflocation in the CFC to relocate after the opeation is done - i > think www.benorama.com does this in his MVC example. Man, that seems

Re: Call a cfc from a cfform

2004-11-16 Thread Joe Rinehart
Rick, Some people have done as a way of using the CFC as a controller - using cflocation in the CFC to relocate after the opeation is done - i think www.benorama.com does this in his MVC example. -joe On Tue, 16 Nov 2004 14:13:07 -0500, Rick Root <[EMAIL PROTECTED]> wrote: > Charles Heizer wro

Re: Call a cfc from a cfform

2004-11-16 Thread Rick Root
Charles Heizer wrote: > I was thinking that I could set the action to be my cfc "action.cfc" and set > the cfinvokeargument to be form values and args. Basically using a cfform > instead of using cfinoke. Well, that's certainly possible I guess... although I can't imagine why you'd do that, since

Re: Call a cfc from a cfform

2004-11-16 Thread Charles Heizer
Cool! This is just what I was looking for. Thanks, - Charles On 11/16/04 10:01 AM, "Ben Forta" <[EMAIL PROTECTED]> wrote: > Sure ... > > > > ... > > > Assuming that what you want to do is submit a form to a CFC method, that is. > > --- Ben > > > -Original Message- > From: Cha

Re: Call a cfc from a cfform

2004-11-16 Thread Charles Heizer
I was thinking that I could set the action to be my cfc "action.cfc" and set the cfinvokeargument to be form values and args. Basically using a cfform instead of using cfinoke. Thanks, - Charles On 11/16/04 9:50 AM, "Rick Root" <[EMAIL PROTECTED]> wrote: > Charles Heizer wrote: >> Hello, >> I wa

RE: Call a cfc from a cfform

2004-11-16 Thread Ben Forta
Sure ... ... Assuming that what you want to do is submit a form to a CFC method, that is. --- Ben -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 12:46 PM To: CF-Talk Subject: Call a cfc from a cfform Hello, I was wondering if

Re: Call a cfc from a cfform

2004-11-16 Thread Joe Rinehart
Hey Charles, What exactly are you looking to do? Your question is a little vague... -joe On Tue, 16 Nov 2004 09:45:54 -0800, Charles Heizer <[EMAIL PROTECTED]> wrote: > Hello, > I was wondering if it was possible to call a cfc from a cffrom? If so how? > > Thanks, > - Charles > > ~

Re: Call a cfc from a cfform

2004-11-16 Thread Rick Root
Charles Heizer wrote: > Hello, > I was wondering if it was possible to call a cfc from a cffrom? If so how? What exactly do you mean by call a cfc from a cfform? Sure you can invoke a cfc object within a cfform just like you can at any other point on the page.. but I'm assuming that's not what y