|
M
|
Maurits 12/17/2010 |
|
ASPRunnerPro 6.3 Build 6843 Hi, I've browsed the forums and the knowledge base and was unable to find a solution. I would like users to be allowed to login without case sensitive email and password. Any help appreciated. Larry Dompierre
|
|
|
J
|
Jane 12/17/2010 |
|
Hi, |
|
|
L
|
larry.dompierre author 12/17/2010 |
|
Thanks for the responses. I've tried several different things pertaining to your suggestion and I'm not sure where I'm going wrong here- I can run the Following SQL Statement and Match it in the MDB SQL editor, but can not seem to get the login to work... |
|
|
M
|
Maurits 12/18/2010 |
|
Thanks for the responses. I've tried several different things pertaining to your suggestion and I'm not sure where I'm going wrong here- I can run the Following SQL Statement and Match it in the MDB SQL editor, but can not seem to get the login to work... strSQL = "select UCASE([Email]) AS UEmail, [Password] from " & CSmartStr(AddTableWrappers("TContacts")) & " where [Email]=" & UCASE(CSmartStr(strUsername)) & " and " & CSmartStr(AddFieldWrappers(cPasswordField)) & "=" & CSmartStr(strPassword) I can't figure out exactly how to work it within your code and just get the message "Invalid Login" I would like to, if possible, not go into storing the login registration, so users can see what they orignally wrote (John@test.com instead of JOHN@test.com). Any suggestions? Thanks
if IsEqual(GetRequestValue(RequestForm(),"btnSubmit"),"Login") and bValue(logacc) then
Function BeforeRegister(userdata,message)
Function AfterSuccessfulLogin(username,password,data)
|
|