yapjiwen
04-13-2004, 09:45 AM
Hi there,
MS Access seems to ignore case sensitivity and it is proving a problem as i need my password to be sensitive.
is there any way to make my password case sensitive or in other words, how do i validate my password and make sure it is exactly the same as the one in Access?
my codes :
if not isempty(Request.Form("Enter")) then set RSUser = conn.Execute("select * from Employee where user_id = '"&Request.Form("userid")&"' and password = '"&Request.Form("password")&"'")
.
.
.
I do not know wat else i need to add to implement case sensitivity. Anyone?
Thanks in advance.
MS Access seems to ignore case sensitivity and it is proving a problem as i need my password to be sensitive.
is there any way to make my password case sensitive or in other words, how do i validate my password and make sure it is exactly the same as the one in Access?
my codes :
if not isempty(Request.Form("Enter")) then set RSUser = conn.Execute("select * from Employee where user_id = '"&Request.Form("userid")&"' and password = '"&Request.Form("password")&"'")
.
.
.
I do not know wat else i need to add to implement case sensitivity. Anyone?
Thanks in advance.