Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/04/2005, 09:24
Avatar de skatomundo
skatomundo
 
Fecha de Ingreso: junio-2002
Ubicación: Santiago - CL
Mensajes: 2.532
Antigüedad: 22 años, 10 meses
Puntos: 125
probando..

Código:
<!--#include file="conexion.asp"-->
<%
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open Conex
Set rs = Server.CreateObject("ADODB.Recordset")
sSql = "SELECT * FROM [fotos]"
Set rs = conn.Execute(sSql)
do until rs.eof
Response.Write( "<image src='http://www.municipalidadcorral.cl/galerias/gente/" & trim(rs.fields("archivo")) &".jpg' width='228' height='136' alt='" & trim(rs.fields("archivo")) &"'>")
rs.movenext
loop
rs.close
%>
Pd: agrega el enlace.

Última edición por skatomundo; 07/04/2005 a las 09:26