Comparing upper case and lower case

2009-10-23 Thread Phillip Vector
I got a confusion issue here... session.sRep.PassWord NEQ password session.sRep.Password is 'AAA' (The old password) password is 'aaa' (The new password) How do I code up something that says "If the old password is not equal to the new password, then do foo"? It seems that NEQ or "is not" does

Re: Comparing upper case and lower case

2009-10-23 Thread Charlie Griefer
compare() is a case-sensitive comparison of strings. On Fri, Oct 23, 2009 at 1:39 PM, Phillip Vector wrote: > > I got a confusion issue here... > > session.sRep.PassWord NEQ password > > session.sRep.Password is 'AAA' (The old password) > password is 'aaa' (The new password) > > How do I code up

Re: Comparing upper case and lower case

2009-10-23 Thread Claude Schneegans
>>It seems that NEQ or "is not" doesn't care about case. Exact. Use the Compare () function for case sensitive comparison. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusio

Re: Comparing upper case and lower case

2009-10-23 Thread Phillip Vector
Yeah.. Found out after I hit send.. Thanks. :) On Fri, Oct 23, 2009 at 1:44 PM, Charlie Griefer wrote: > > compare() is a case-sensitive comparison of strings. > > On Fri, Oct 23, 2009 at 1:39 PM, Phillip Vector > wrote: > >> >> I got a confusion issue here... >> >> session.sRep.PassWord NEQ pas

Re: Comparing upper case and lower case

2009-10-23 Thread Eric Cobb
check out the compare() function, it's case sensitive. http://livedocs.adobe.com/coldfusion/8/htmldocs/functions_c-d_06.html#1101820 Thanks, Eric Cobb http://www.cfgears.com Phillip Vector wrote: > I got a confusion issue here... > > session.sRep.PassWord NEQ password > > session.sRep.Passw