This topic is locked

Case Sensitivity

10/25/2005 3:06:41 PM
ASPRunnerPro General questions
skemp author

Hello,
How may I make the user login name and password case in-sensitive.
Sheryl Kemp

Sergey Kornilov admin 10/26/2005

Sheryl,
you need to modify login.asp page for this purpose (see my chnages in bold)

if UCase(request("username"))=UCase(CStr(rs(cUserNameField))) and UCase(request("password"))=UCase(CStr(rs(cPasswordField))) then

500360 10/26/2005

That worked marvelous! Thank you !!!