Well here are the two srcipts...
Default.asp:
<%@ Language=VBScript %>
<HTML>
<%
dim sql, conn, PWD, UID, EntPWD
Response.Write "<form name=frmTT method=post action=Login.asp>"
%>
<head>
<title>Gladiators</title>
</head>
<body text="#000000" bgcolor="#C0C0C0" link="#0000EE" vlink="#FFFF99" alink="#FF0000">
<center><font size=+4>Gladiators</font><font size=+4></font>
<p><font size=+2>Your nostrils fill with the scent of blood and sweat.
Your eyes focus on your enemy's blade. Your ears rejoyce in your opponent's
screams of agony. Your mouth waters in anticipation of victory. The crowds.
The cheers. </font><font size=+3>VICTORY...</font><font size=+3></font>
<p><font size=+2>Your nostrils struggle to breathe. Your eyes are blinded
by the blood flowing from your brow. Your ears shy away from your
enemy's taunts. Your mouth fills with blood, drowning you in defeat. The
crowds. The cheers. </font><font size=+3>DEFEAT...</font><font size=+3></font>
<p><font size=+2>Be it one or the other, GLORY or SHAME, you ARE destined
to be a...</font><font size=+2></font>
<p><font size=+4>Gladiator</font><font size=+4></font>
<br>
<p><font size=+4>UserID:</font><font size=+4></font>
<br><br>
<div align="center"><input type="text" name="txtUserID" value="" size="15" maxlength="15"></div>
<br>
<p><font size=+4>Password:</font></center>
<br><br>
<div align="center"><input type="password" name="txtPassword" value="" size="15" maxlength="15"></div>
<br><br><br><br>
<div align=center><input type=submit name=cmdLogin value=Login></div><br><br>
</body></form></html>
Login.ASP:
<body text="#000000" bgcolor="#C0C0C0" link="#0000EE" vlink="#FFFF99" alink="#FF0000">
<%
if Request.Form("cmdLogin"

<> "" then
UID = request.form("txtUserID"

EntPWD = request.form("txtPassword"

sql = "select top 1 password, UserID from players Where UserID = '" & UID & "'"
Set Conn = Server.CreateObject("ADODB.Connection"

Conn.Open "Glad"
Set rs = Server.CreateObject("ADODB.Recordset"

rs.Open sql, Conn
if not rs.EOF then
PWD = rs("Password"

if PWD = EntPWD then
Response.Write "Correct"
else
Response.Write "<head><title>Gladiators</title></head>"
Response.Write "<center><font size=+4>Incorrect Password, try again</font>"
end if
else
PWD = "No such User, try again"
Response.Write "<head><title>Gladiators</title></head>"
Response.Write "<center><font size=+4>" & PWD & "</font>"
end if
rs.Close
conn.Close
set conn = nothing
set rs = nothing
end if
%>
Anything?
Phailak