Link to home
Start Free TrialLog in
Avatar of phileoca
phileocaFlag for United States of America

asked on

not EQ syntax. =) easy/urgent

if i use EQ for equals
what is not equals?

urgent, but easy (i'm still learnign syntax)


<>< kT
Avatar of phileoca
phileoca
Flag of United States of America image

ASKER

BTW, this was my pathetic attempt

<cfif OrderDetailsCheck.RecordCount NE 0>
ASKER CERTIFIED SOLUTION
Avatar of Plucka
Plucka
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
lol, i just typed that in, but didn't process yet.  Was waiting for some sort of confirmation.

Thanks for the quick lesson!!!

<>< kT
You can also use the NOT word to prefix items.

<cfif OrderDetailsCheck.RecordCount NOT eq 0>

and you can use is as an equilivent to equals

<cfif OrderDetailsCheck.RecordCount IS NOT 0>

Many ways to skin the cat.

but eq and neq are the most common methods.

Also, you probably already know but

LT <
GT >