
01/06/2002, 11:35
|
 | | | Fecha de Ingreso: mayo-2002 Ubicación: Lima
Mensajes: 105
Antigüedad: 23 años Puntos: 0 | |
Asp con Access Soy nuevo en esto y no se si alguien me puede ayudar, y decir que esta mal en el codigo, porque no me sale ningun resultado.
<%@Languaje="VBScript"%>
<html><head><title>Listado< ;/title></head>
<body>
<big><p>Correo<big></p>
<div align="center"><center>
<table border="3" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="33%"><big>Nombre</big></td>
<td width="33%"><big>Apellido</big></td>
<td width="33%"><big>Email</big></td>
</tr>
<%
Dim Conexion,Tabla
Set conexion=Server.CreateObject("adodb.connectio n")
Set Tabla=Server.CreateObject("adodb.recordset&qu ot;)
Conexion.Open"Correo"
Tabla.Open"Tabla1",Conexion
While Not Tabla.EOF
%>
<tr>
<td width="33%"><%=Tabla.Fields(" Nombre")%></td>
<td width="33%"><%=Tabla.Fields(" Apellido")%></td>
<td width="33%"><%=Tabla.Fields(" Email")%></td>
</tr>
<%
Tabla.MoveNext
Wend
%>
</table>
</center></div>
</body>
</html> |