Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/03/2007, 08:39
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 18 años, 3 meses
Puntos: 126
Re: Subir varias imagenes al mismo tiempo

No lo he probado pero podría ser algo así

Código:
Function Pics(byval strpath)

filename = Server.MapPath(strpath)
Set fs = CreateObject("Scripting.FileSystemObject")
If fs.FileExists(filename) Then
Response.write("<img src=" & strpath &">  
Response.end
  Else
Response.write("<img src=""./blank.jpg"">")
Response.end
End If

End Function
Suerte