Ver Mensaje Individual
  #9 (permalink)  
Antiguo 03/02/2008, 15:40
amstrad
 
Fecha de Ingreso: noviembre-2007
Mensajes: 15
Antigüedad: 16 años, 5 meses
Puntos: 0
Re: problema con pagina de enlaces

<%do while not consulta.eof%>
<ul>
<li>.<a href="<%=consulta("enlace")%>" target="_blank"><%=consulta("nombre")%></a></li>
</ul>
<%consulta.movenext
loop
consulta.close
sql="select nombre, enlace from links where tipo = 1 order by idLink asc"
consulta.Open sql, db%>
<h1 style="margin-top:15px;">otros enlaces de interés</h1>
<%do while not consulta.eof%>
<ul>
<li>.<a href="<%=consulta("enlace")%>" target="_blank"><%=consulta("nombre")%></a></li>
</ul>
<%consulta.movenext
loop
consulta.close
%>