On Sat, 6 May 2000 09:06:53 -0700, "Will" <[EMAIL PROTECTED]> wrote:
>
> You could do
>
> <CFIF check_email.RecordCount EQ 0>
> Didn't work
> <CFELSE>
> Worked, run this code
> </CFIF>
>
Why have that extra comparison - it doesn't add to readability - not for a prgrammer
at least, just detracts from speed.
<CFIF checkEmail.RecordCount>
worked
<CFELSE>
didn't
</CFIF>
OR
<CFIF not checkEmail.RecordCount)
didn't work
<CFELSE>
worked
</CFIF>
------------------------------------------------------------------------------
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.