CFSCRIPT equiv. of CFPARAM?

2003-09-11 Thread Alexander Sherwood
Anyway to easily emulate CFPARAM using CFSCRIPT (without conditional logic?) -- Alex Sherwood ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4

RE: CFSCRIPT equiv. of CFPARAM?

2003-09-11 Thread Pascal Peters
No, but there is a UDF on cflib.org -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: donderdag 11 september 2003 16:30 To: CF-Talk Subject: CFSCRIPT equiv. of CFPARAM? Anyway to easily emulate CFPARAM using CFSCRIPT (without conditional logic?) -- Alex

RE: CFSCRIPT equiv. of CFPARAM?

2003-09-11 Thread Ben Doom
:30 AM : To: CF-Talk : Subject: CFSCRIPT equiv. of CFPARAM? : : : Anyway to easily emulate CFPARAM using CFSCRIPT (without : conditional logic?) : : -- : Alex Sherwood : : ~| Archives: http://www.houseoffusion.com/lists.cfm

Re: CFSCRIPT equiv. of CFPARAM?

2003-09-11 Thread Neculai Macarie
function cf_param(var_name, default_value) { if(not isDefined(var_name)) SetVariable(var_name, default_value); } mack / - Original Message - From: Alexander Sherwood [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 11, 2003 17:29 Subject: CFSCRIPT equiv