Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/01/2011, 07:18
Avatar de JJF
JJF
 
Fecha de Ingreso: mayo-2005
Mensajes: 205
Antigüedad: 19 años
Puntos: 0
Respuesta: Problema con loop

Muy bien! Muchas gracias.

A la variable la generé dentro del while y lo muestro:

Cita:

<%
counter=0
Do While Not Rs1.EOF

' Genero la variable que me resolvió el problema!

fotito=RS1("IMG")


%>
<td height="111" align="center" valign="top" width="141" bgcolor="#CFF9A2">
<A href="imgbig/<%=Response.write(""&fotito)%>" rel="lightbox" class="horizontal" >
<IMG src="imgmini/<%=Response.write(""&fotito)%>" width="136" height="105" align="middle"></A>
<br>
</td>
<%
counter=counter+1
If counter Mod 4=0 Then Response.Write "</tr><tr>"
Rs1.MoveNext
Loop
%>

Muchas gracias por tu respuesta! muy agradecido!