qs la pagina:

<script language="JavaScript">
function setFocus()
{
Login.txtUserName.focus();
}
</script>
<body onload="setFocus();">




<%
If Request.querystring("mode") = "suspend" then
Response.Write ("<center><font color=red>Username is currently suspended</font></center>

")
End If

If Request.querystring("mode") = "once" then
Response.Write ("<center><font color=red>Username is currently logged in</font></center>

")
End If

If Request.querystring("mode") = "invalid" then
Response.Write ("<center><font color=red>Invalid username or password. Please try again.</font></center>

")
End If
%>
<form name="Login" method="post" action="login.asp">
User name:
<input type="text" name="txtUserName">
Password:
<input type="password" name="txtUserPass">
<input type='image' src='images/forward_16.gif' name='Submit' value='Enter' alt='Enter'>
<input type='image' src='images/cancel_16.gif' name='Reset' value='Reset' alt='Reset'>


</table>
</form>

</body>