![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
03/02/2008, 15:40
|
| | Fecha de Ingreso: noviembre-2007
Mensajes: 15
Antigüedad: 17 años, 2 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
%> |