The book Instant ASP Scripts (GregBuczek Ch. 12) has a great ASP Login.
Below is another that I pirated from somewhere using SSN and Password.
Access table name is PassWordTable
<%@ Language=VBScript %>
<%
if not isempty(Request.Form("Enter"

) then
set conn = server.createobject ("adodb.connection"

conn.open "dsnname", "yourusername", "yourpassword"
set RSEmp = conn.Execute("select USERID from PassWordTable where " _
& "Password = '" & Request.Form("Password"

& "' and " _
& "SSN = '" & Request.Form("SSN"

& "'"

if RSEmp.EOF then
TheMessage = "SSN or Password were not found."
else
Response.Redirect "./html/somewhereelse.asp?EmpID=" & RSEmp("USERID"

end if
else
TheMessage = "First you must Log In to the page."
end if
%>
Create a Form with Inputs type=texts for SSN and type= password for the Password.
Eric
Starting GA/AL Focus User Group (FUSE) in Atlanta. See IBI website for usergroup info or contact me at eric.searing@wcom.com.