Cita:
Iniciado por plantala Buenas!
<body>
<table width="400" border="1" align="center">
<%While NOT Recordset1.EOF%>
<tr>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
<%Recordset1.MoveNext%>
<%If Recordset1.EOF=False Then %>
<td><%=(Recordset1.Fields.Item("Imagen").Value)% ></td>
<td><%=(Recordset1.Fields.Item("Nombre").Value)% ></td>
<%Else %>
<td> </td>
<td> </td>
<%End If %>
</tr>
<%Recordset1.MoveNext%>
<%WEnd%>
</table>
A ver usa éste código que todo está almacenado en la misma carpeta, entonces debe funcionar con ésto:
<table width="300" border="1" cellspacing="0" cellpadding="0">
<% Dim TotalF, i
i=o
Recordset1.CursorType=1
TotalF=Recordset1.RecordCount
while NOT Recordset1.EOF %>
<tr><td><%= Recordset1.fields("Nombre") %></td><td><img src="<%=Recordset1.fields("Imagen")%>" width="329" height="315" /></td>
<%RS.MoveNext
i=i+1
%>
<td><%= Recordset1.fields("Nombre") %></td><td><img src="<%=Recordset1.fields("Imagen")%>" width="329" height="315" /></td></tr>
<%i=i+1
If i<>TotalF then
Recordset1.MoveNext
End If
Wend %>
</table>
No Olvides que debes de cerrar tu recordset y tu base de datos al final
mira yo lo probé y me funciona sin problemas.
OJO: lo valores del tamaño de tabal y de la las imagen nos referenciales
Saludos es epro te ayude