MVC uygulamamda bir dosya yüklemek için aşağıdaki kodu kullanıyorum.
MODEL
public HttpPostedFileBase File { get; set; }
GÖRÜNÜM
@Html.TextBoxFor(m => m.File, new { type = "file" })
Her şey yolunda gidiyor .. Ama sonucu fiel'i bayta [] dönüştürmeye çalışıyorum. Bunu nasıl yapabilirim
KONTROLÖRÜ
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}