मेरे MVC एप्लिकेशन में, मैं एक फ़ाइल अपलोड करने के लिए निम्नलिखित कोड का उपयोग कर रहा हूं।
नमूना
public HttpPostedFileBase File { get; set; }
राय
@Html.TextBoxFor(m => m.File, new { type = "file" })
सब कुछ ठीक काम कर रहा है .. लेकिन मैं परिणाम फ़ील्ड को बाइट में परिवर्तित करने की कोशिश कर रहा हूं []। मैं यह कैसे कर सकता हूं
नियंत्रक
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}