
22/07/2005, 14:20
|
 | | | Fecha de Ingreso: junio-2005
Mensajes: 155
Antigüedad: 19 años, 10 meses Puntos: 0 | |
MIRA TENGO ESTE CODIGO Y NO ME MUESTRA LOS DATOS KE NESESITO KE SE VEAN ME PUEDEN DESIR KE TENGO MALO EN EL CODIGO ..
<%
set conn = Server.CreateObject("ADODB.Connection")
set RS = Server.CreateObject("ADODB.RecordSet")
conn.Open("Libro")
RS.Open("SELECT * FROM formulario"), conn
if not RS.EOF then
' mostras los registros con un bucle generalmente
else
' no se han encontrado registros
end if
RS.Close
conn.Close
set RS = nothing
set conn = nothing
%> |