Ver Mensaje Individual
  #5 (permalink)  
Antiguo 26/03/2008, 09:33
lucho987
 
Fecha de Ingreso: febrero-2008
Mensajes: 42
Antigüedad: 16 años, 10 meses
Puntos: 0
De acuerdo Re: subir imagen ayudita porfavor

mira esto es lo que quiero realizar ....


Código:
Public Function GetBitImg(ByVal img As FileUpload, ByVal txt As TextBox) As Byte()
        If txt.Text = "" Then
// aca estaria el codigo para la imagen default
        Else
//aca tomo lo que trae el fileupload y me devuelve un byte para luego insertarlo en la bd ....
            Dim httpimg As HttpPostedFile = img.PostedFile
            Dim bit(img.PostedFile.InputStream.Length + 1) As Byte
            httpimg.InputStream.Read(bit, 0, img.PostedFile.ContentLength)
            Return bit
        End If

    End Function
como seria el codigo para capturar la imagen por defecto en el servidor y devolver un byte gracias............