Continually Improving.... let us know how support@devdiamond.net Sign in | Sign up
home articles news blog forum  

 
 


 
Skip Navigation LinksHome > Forum > Assigning Session or global Variables
 
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