|
<%
Dim autorizacion
if (Request.QueryString("aut") <> 0) then
autorizacion = Request.QueryString("aut")
else
autorizacion=0
end if
if autorizacion= 2 then
Response.Write("El usuario NO EXISTE")
ElseIf autorizacion= 3 then
Response.Write("La contraseña no coincide con el usuario")
End If
%>
|