私の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
}
}