Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have have a View where I add products to simple webStore. I want to have multiple images with one product. That's why I use FileUplad from Microsoft.Web.Helpers. The use of FileUpload in my View is like this:

@FileUpload.GetHtml("Upload", 5, true, true, addText: "Add more", uploadText: "Upload files")

Then I have some labels and fields for other product attributs like this:

<div class="editor-field">
@Html.EditorFor(model => model.Title)
@Html.ValidationMessageFor(model => model.Title)
</div>

The problem is that when I use post method, my controller does not get anything. I use controller like this:

   [HttpPost]
    public ActionResult Create(Product product, IEnumerable<HttpPostedFileBase> fileUpload)
    {
        foreach (var file in fileUpload)
        {
            var fileName = Path.GetFileName(file.FileName);

        }
        return RedirectToAction("Index");
    }

So does anyone have any idea, what am I doing wrong. Because my fileUpload object is always empty.

share|improve this question

1 Answer

Most likely your BeginForm is missing the required field. It should look like this:

using(Html.BeginForm("Index", "Home", FormMethod.Post, 
    new { enctype="multipart/form-data" })) { 

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.