Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/07/2002, 09:50
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 meses
Puntos: 0
Re: Error sintactico ASP y HTML

Código:
  
<% 
consulta= "select * from Foros"
rs.open consulta
contador= 0
do while not rs.eof
contador =contador +1 
response.write "imagen " & contador%>
<img src=/images/<%response.write rs("nombre")%>>
<% if contador=4 then 
 response.write "SALTO DE LINEA" & "<BR>"    
 contador=0
end if 
rs.movenext
loop 
%>
te falto cerra el IF.