Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/11/2007, 14:41
Avatar de CésarBalaguer
CésarBalaguer
 
Fecha de Ingreso: octubre-2006
Ubicación: en mi casa
Mensajes: 181
Antigüedad: 18 años, 7 meses
Puntos: 0
Re: mostrar imagen solo en determinadas condiciones

yo suelo usar esto:

Cita:
<% function ExisteFile(pNomFile)
dim fso
dim lExiste

lExiste = false

Set fso = CreateObject("Scripting.FileSystemObject")
if fso.FileExists (pNomFile) then
lExiste = true
end if
ExisteFile = lExiste
set fso = Nothing
end function %>
espero te sirva.
Saludos