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............