ในแอปพลิเคชัน MVC ของฉันฉันใช้รหัสต่อไปนี้เพื่ออัปโหลดไฟล์
MODEL
public HttpPostedFileBase File { get; set; }
ดู
@Html.TextBoxFor(m => m.File, new { type = "file" })
ทุกอย่างทำงานได้ดี .. แต่ฉันกำลังพยายามแปลงผลลัพธ์ fiel เป็น byte [] ฉันจะทำสิ่งนี้ได้อย่างไร
CONTROLLER
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}