Dans mon application MVC, j'utilise le code suivant pour télécharger un fichier.
MODÈLE
public HttpPostedFileBase File { get; set; }
VUE
@Html.TextBoxFor(m => m.File, new { type = "file" })
Tout fonctionne bien .. Mais j'essaie de convertir le champ de résultat en octet []. Comment puis-je faire cela
MANETTE
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}