Uploading Files with ASP.Net MVC – get name but no file stream, what am I doing wrong?

I don’t know what the policy is on posting profanity, but here’s the problem:

enctype="mulitipart/form-data"

The extra i in there stopped the file from uploading. Had to run Fiddler to see that it was never sending the file in the first place.

It should read:

enctype="multipart/form-data"

Leave a Comment