It is using databases, create a form with login and password and submit then link to your database and check the details......
This page called after you enter login and password!..
' Open the connection and Create the record set
set dbProfile = server.createobject("adodb.connection"
strConnection = "Enter your provide information here"
dbProfile.open (strConnection)
set rsProfile = server.CreateObject("adodb.recordset"
' Build the SQL stored procedure to retrieve the customer username and password I am using Stored procedures
sql = "execute sp_RetrieveLogin '" & customer_username & _
"', '" & customer_password & "'"
' Retrieve the record set.
set rsProfile = dbProfile.Execute(sql)
if rsProfile.EOF = false then
' go to page that is correct
Response.redirect "loginresult.asp?"
else
' Error
Response.Redirect "loginerror.asp?" end if
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.