Hallo
I´m in the process of changing the tables in the WWF.mdb
i´m new to asp and Access.
My question is if I want to change the tables names of username to: intAccessUserName
and password to:
intAccessUserPassword
What do I have to change the code below to in order to make it work ?
(i´m unsure about this "strUsername" and "strPassword" command
'Read in the users details from the form
strUsername = Trim(Mid(Request.Form("name"), 1, 15))
strPassword = LCase(Trim(Mid(Request.Form("password"), 1, 15)))
blnAutoLogin = CBool(Request.Form("AutoLogin"))
'Take out parts of the username that are not permitted
strUsername = Replace(strUsername, "password", "", 1, -1, 1)
strUsername = Replace(strUsername, "salt", "", 1, -1, 1)
strUsername = Replace(strUsername, "author", "", 1, -1, 1)
strUsername = Replace(strUsername, "code", "", 1, -1, 1)
strUsername = Replace(strUsername, "username", "", 1, -1, 1)
and what does the str command stand for ?
Please help me out on this one, this is the only thing I need to complete the remaning of my tables (I think!)
Regards Cheops
Edited by cheops@collecto