RE: Using a function outsideof the call page.

2008-07-25 Thread Dave Phillips
>>Dave, Thanks. Is one preferred over the other? Is one more friendly to understand when reading the code? Matthew, I also forgot you could create a custom tag as well. :) Shannon is right, cfinclude is probably the 'simplest'. However, you could start a weeks long discussion on this forum abou

Re: Using a function outsideof the call page.

2008-07-25 Thread Shannon Peevey
>>Dave > Dave, > Thanks. Is one peffered over the other? Is one more friendly to > understand when reading the code? > The cfinclude idea is the simplest. You are just including "normal" coldfusion code into the file. I tend to use the various options for different things within the same ap

Re: Using a function outsideof the call page.

2008-07-25 Thread Matthew MattCFIrwin
>>> I am currently calling a cffunction that is on the same page using myVar = GetVar(Toy)>. The GetVar is written on the same page. However I want >to call another function the same way but it is on a diffrent page. Is there >a way of calling it with out having to copy and past it into this page?

Re: Using a function outsideof the call page.

2008-07-25 Thread Yuliang Ruan
put your funtion declaration in a shared file include it. or put the include if your application cfm/cfc. just start making your own function libraries :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

RE: Using a function outsideof the call page.

2008-07-25 Thread Dave Phillips
>> I am currently calling a cffunction that is on the same page using >> . The GetVar is written on the same page. >> However I want to call another function the same way but it is on a >> diffrent page. Is there a way of calling it with out having to copy >> and past it into this page? Thanks

RE: Using a function outsideof the call page.

2008-07-25 Thread Dave Phillips
>> I am currently calling a cffunction that is on the same page using . The GetVar is written on the same page. However I want to call another function the same way but it is on a diffrent page. Is there a way of calling it with out having to copy and past it into this page? Thanks Matthew, You c

Re: Using a function outsideof the call page.

2008-07-25 Thread Larry Lyons
> I am currently calling a cffunction that is on the same page using > . The GetVar is written on the same page. > However I want to call another function the same way but it is on a > diffrent page. Is there a way of calling it with out having to copy > and past it into this page? Thanks put

Re: Using a function outsideof the call page.

2008-07-25 Thread Shannon Peevey
On Fri, Jul 25, 2008 at 8:36 AM, Matthew Irwin <[EMAIL PROTECTED]> wrote: > I am currently calling a cffunction that is on the same page using myVar = GetVar(Toy)>. The GetVar is written on the same page. However I want > to call another function the same way but it is on a diffrent page. Is ther