Cita:
Iniciado por plantala 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