Ver Mensaje Individual
  #10 (permalink)  
Antiguo 10/03/2003, 23:18
Avatar de urjose
urjose
 
Fecha de Ingreso: diciembre-2001
Mensajes: 5.286
Antigüedad: 23 años, 4 meses
Puntos: 1
<%@Language="VBScript"%>
<html>
<%
Dim conexion,tabla
Set conexion=Server.CreateObject("adodb.connection")
Set tabla=Server.CreateObject("adodb.recordset")
conexion.Open "acceso"
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>