user427875
user427875

Reputation: 1265

Empty Request.Files with MVC 3 file upload

This is my markup:

<form action="/Customer/Create" enctype="multipart/form-data" method="post">
    <input id="file" type="file" style="width:300px" />
    <input type="submit" id="btnSubmit" value="Add Image to S3" />
</form>

When I step through the Create action the Request.Files is empty. I've searched and searched and all the advice seems to be about ensuring the enctype is set to "multipart/form-data" which I have already set. Any other ideas?

Upvotes: 5

Views: 3978

Answers (1)

Jacob
Jacob

Reputation: 78850

Try adding a name attribute to the input. I don't think nameless form items get posted at all.

Upvotes: 12

Related Questions