Hola a tod@s. Para desplegar de forma correcta una tabla tengo que hacerlo así:
...
<%=(rs.Fields.Item("Imagen").Value)%& gt;</td>
<td width="12%">Jueves</td>
<%rs.Move 1%>
<td width="11%"><%=(rs.Fields.Item(&qu ot;HORA1").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA2").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA3").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA4").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA5").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA6").Value)%></td>
</tr>
<%rs.Move 5%>
<tr>
<td width="12%">Viernes</td>
<td width="11%"><%=(rs.Fields.Item(&qu ot;HORA1").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA2").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA3").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA4").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA5").Value)%></td>
<td width="13%"><%=(rs.Fields.Item(&qu ot;HORA6").Value)%></td>
</tr>
<%rs.Move -1%>
...Y eso seguiría igual(cambiando el Move) durante todos los días de la semana. Así, en total, en 7 filas. ¿Como podría hacerlo para repetir estas 7 filas igual y que deplegara todo hasta que no hubiera registros adecuados?
Así:
Imagen
Jueves....
Viernes...
Sábado
...
Imagen
Jueves...
Viernes...
Sábado...
...
Un saludo.