I'm sorry, I am still learning CF and I haven't yet begun to use scripts or functions within my code. I am not opposed to doing so, I just need help.
So I applied this logic to my code, but how do I get it to display the value entered in the email notification that is sent out? Thank you, Aimee' Clark -----Original Message----- From: Mark A. Kruger - CFG [mailto:mkruger@;cfwebtools.com] Sent: Thursday, October 31, 2002 3:27 PM To: CF-Talk Subject: RE: Need assistance with listbox on a form I use the following "IsEmpty( )" function for simple values. It saves time and it looks similar (in my code) to "IsDefined( )": <Cfscript> function IsEmpty(item){ IF(len(trim(item))) return false; ELSE Return true; } </cfscript> -----Original Message----- From: Chuck Brockman [mailto:cfmail@;designmotives.com] Sent: Thursday, October 31, 2002 2:55 PM To: CF-Talk Subject: RE: Need assistance with listbox on a form Try len(Trim(chgFLangauge)). See if that helps ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

