Dear, how can I get an image from a vbhtml view in this format:
@Html.LabelFor(Function(m) m.FchNacimientoPER)
@Html.TextBoxFor(Function(m) m.FchNacimientoPER, new With {.class="form-control"})
I want to get the image as an array of bytes
, can I get it as a byte()
from the view? or I have to send it to the controller and then pass it to byte()
to work it.