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