Summary :
|
Views :
0
Published :
Thursday, February 03, 2005
By
HyperLink
|
I have a Login page in my site, and it works perfect. I have a SQL database, and my form of authentication is as follows:
Strusr = request.form("usr")
Strpwd = request.Form("pwd")
ssql = "select * from profesores where usr = '" & LCase(Strusr) & "'"_
& " and pwd = '" & LCase(Strpwd) &am
|