Ver Mensaje Individual
  #9 (permalink)  
Antiguo 16/04/2008, 08:44
MiguelSB
 
Fecha de Ingreso: diciembre-2007
Mensajes: 36
Antigüedad: 16 años, 11 meses
Puntos: 0
De acuerdo Re: ayuda con permisos en asp

Cita:
Iniciado por plantala Ver Mensaje
Aqui tienes el codigo:
----------------------------------------------------------------------------------------
<table width="400" border="1">
<tr>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
</tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
----------------------------------------------------------------------------------------
Ojala me podais ayudar...
Gracias.
El código sería de la siguiente manera:
<table width="400" border="1">
while NOT Recordset1.EOF
<tr>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
</tr>
Recordset1.MoveNext
WEnd
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>


Espero haberte ayudado

saludos