Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/02/2011, 15:17
Avatar de gedarufi
gedarufi
 
Fecha de Ingreso: diciembre-2008
Ubicación: Colombia
Mensajes: 540
Antigüedad: 15 años, 11 meses
Puntos: 22
Respuesta: Dudas con Rutas En Aspx y C#

Con este código puedes subir un archivo a tu servidor usando el file upload
Código C#:
Ver original
  1. if (this.fuImagen.HasFile)
  2.             {
  3.                 String path = String.Format("{0}\\media\\{1}\\", Request.MapPath("\\"), "archivos");
  4.  
  5.                 if (!System.IO.Directory.Exists(path))
  6.                 {
  7.                     System.IO.Directory.CreateDirectory(path);
  8.                 }
  9.  
  10.                 this.fuImagen.SaveAs(String.Format("{0}{1}", path, this.fuImagen.FileName));
  11.  
  12.             }
Siendo fuImagen el FileUpload, puedes reemplazar la ruta en la que quieres almacenar tu archivo en la variable path.

Saludos