在我的 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
}
}