Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/06/2002, 04:11
Avatar de TomaHawkk
TomaHawkk
 
Fecha de Ingreso: diciembre-2001
Ubicación: España
Mensajes: 422
Antigüedad: 23 años, 5 meses
Puntos: 1
Re: Dónde está el error????

Hola!

Prueba con esto, debería funcionar :)

Código:
<form method="POST" action="confirmapostal.asp">
<table border="1" width="95%" bgcolor="#FFFFCC">
<%
contador=0 
do while not rs.eof

contador = contador+1 

Response.Write "<tr>" & VbCrlf
Response.Write "<td width=33% align=center>" & VbCrlf
Response.Write "<img border=0 src=" & urlminiatura & rs("url") & ">" & VbCrlf
Response.Write "<BR>" & VbCrlf
Response.Write "<input type=radio value=" & rs("id") & " name=id checked>" & VbCrlf
Response.Write "</td>" & VbCrlf

rs.movenext 
if contador > 3 then 
contador=0
Response.Write "</tr><tr>" & VbCrlf

loop 
rs.close 
%>
Un saludo.