
25/01/2005, 06:55
|
 | | | Fecha de Ingreso: septiembre-2004 Ubicación: Venezuela
Mensajes: 300
Antigüedad: 20 años, 6 meses Puntos: 2 | |
Ahh bueno aqui esta el codigo:
Dim ImgRuta As String
ImgRuta = Server.MapPath(NomImg)
Dim FileImg As New System.IO.FileInfo(ImgRuta)
If NomImg <> "FotoUsua/VACIO.gif" Then
If FileImg.Exists Then
FileImg.Delete()
End If
End If |