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