Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/05/2009, 10:17
Avatar de ah_puch
ah_puch
 
Fecha de Ingreso: agosto-2005
Ubicación: Ecatepec, México
Mensajes: 180
Antigüedad: 19 años, 4 meses
Puntos: 3
Respuesta: Subir Foto FileUpload

hola primero que todo define la ruta de donde vas a mostar las imagenes por ejemplo yo lo hago de con este metodo
System.AppDomain.CurrentDomain.BaseDirectory
y el codigo quedaria algo asi donde File_ImgSello es El objeto FileUpLoad
Código:
Dim AppPath As String = System.AppDomain.CurrentDomain.BaseDirectory
Dim ArchName As String = Path.GetFileName(File_ImgSello.PostedFile.FileName)
Dim Ext As String = Path.GetExtension(File_ImgSello.PostedFile.FileName)

If Not (LCase(Ext) = ".jpg" Or LCase(Ext) = ".png" Or LCase(Ext) = ".gif") Then
    Lb_Errores.Text = "EL ARCHIVO DE IMAGEN DEBE DE SER PNG, JPG, O GIF"
    Exit Sub
Else
       'Subiendo el Archivo al Servidor
       File_ImgSello.PostedFile.SaveAs(AppPath & "Tmp\" & ArchName)
       Response.Redirect("PagTest.Aspx?Img=" & ArchName)
End If
Telo Debo en C# por que no tengo mucho tiempo para trascribirlo pero la idea es la misma nadamas con ; y corchetes jeje :P
__________________
La programacion no es un trabajo, es un Arte
http://www.purodev.blogspot.com

Última edición por ah_puch; 18/05/2009 a las 10:26