Ver Mensaje Individual
  #9 (permalink)  
Antiguo 10/03/2003, 15:07
Elig
 
Fecha de Ingreso: noviembre-2002
Ubicación: Elche
Mensajes: 548
Antigüedad: 22 años, 5 meses
Puntos: 0
Este es el cógido y gracias por el interés que te estás tomando:

<%@Language="VBScript"%>
<html>
<%
Dim conexion,tabla
Set conexion=Server.CreateObject("adodb.connection")
Set tabla=Server.CreateObject("adodb.recordset")
conexion.Open"acceso"
tabla.Open"filtro",conexion
temp="Select * From filtro Where usuario='"&Request("user")&"' and paso='"&Request("pass")&"'"
<%tabla.Open temp,conexion
if tabla.BOF And tabla.EOF then%>
<%="mal"%>
<%ELSE%>
<%="bien"%>
<%
END IF
%>
<html>