Yep! You're right. Thanks!
best, paul
PS> I think the summary of this thread is that
<CFIF Len(Trim(Form.firstname))>
is faster than:
<CFIF Trim(Form.firstname) IS NOT "">
At 06:15 PM 6/27/00 -0400, you wrote:
>Look closer at the code:
><CFIF NOT Len(Trim(Form.firstname))> will return FALSE if the string has a
>length greater than 0.
><CFIF Len(Trim(Form.firstname)) GT 0> will return TRUE if the string has a
>length greater than 0.
>
>To compare these two statements you need to drop the "NOT" operator from the
>first one :)
>
>It will work and does work quite nicely.
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.