Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/03/2010, 15:54
Avatar de AWesker
AWesker
 
Fecha de Ingreso: octubre-2008
Mensajes: 177
Antigüedad: 16 años
Puntos: 27
Respuesta: Borrar archivo en el cliente

Intenta con esto (acabo de probarlo y funciona bien)
Código:
 
            try
            {
                 string _Archivo = String.Empty;
                _Archivo = File1.PostedFile.FileName;
                if(System.IO.File.Exists(_Archivo))
                {
                    System.IO.File.Delete(_Archivo);
                }
            }
            catch (Exception ex)
            {
            }