RE: Coldfusion function

2002-04-10 Thread Kevin Schmidt
UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject: Coldfusion function Hi All:

RE: Coldfusion function

2002-04-10 Thread Clint Tredway
if you are using CF 5, you can create a UDF like this cfscript function myFunction() { } /cfscript -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject: Coldfusion function Hi All: I'm coming today with

Re: Coldfusion function

2002-04-10 Thread Jerry Johnson
The answer to your question is yes. Maybe. What version of Cold Fusion Server are you running your pages through? Cold Fusion Server 5.0 has UDF (User Defined Functions) which perform just like functions in any language. But what you are talking about with the template sounds more like you

RE: Coldfusion function

2002-04-10 Thread Shawn Grover
: Wednesday, April 10, 2002 2:23 PM To: CF-Talk Subject: RE: Coldfusion function UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Coldfusion function

2002-04-10 Thread Mario Martinez R.
: Coldfusion function UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject

RE: Coldfusion function

2002-04-10 Thread Kevin Schmidt
Mario, It sounds like you want to go the custom tag route. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file

RE: Coldfusion function

2002-04-10 Thread BillyC
:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file allow me to pass parameters??. Creating a custom tag could work???. Any other choice?? Thanks for replying Mario --- Shawn Grover

RE: Coldfusion function

2002-04-10 Thread Mario Martinez R.
-Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file allow me to pass parameters??. Creating a custom tag could

RE: Coldfusion function

2002-04-10 Thread Shawn Grover
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 2:56 PM To: CF-Talk Subject: RE: Coldfusion function An include file is the same thing as the code being inline - so if you set a variable before the include, it's available to the included template. However