내 MVC 응용 프로그램에서 다음 코드를 사용하여 파일을 업로드하고 있습니다.
모델
public HttpPostedFileBase File { get; set; }
전망
@Html.TextBoxFor(m => m.File, new { type = "file" })
모든 것이 잘 작동합니다 ..하지만 결과 파일을 byte []로 변환하려고합니다. 어떻게해야합니까?
제어 장치
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}