измените форму, чтобы она соответствовала следующим
@using(Html.BeginForm("action","controller",FormMethod.Post,new{encType = "multipart/form-data"})){
{
<input type="file" name="files[0]" id="file1" />
<input type="file" name="files[1]" id="file2" />
<input type="file" name="files[2]" id="file3" />
<input type="submit" />
}
индексам 0,1,2, что позволяет связывателю модели связываться с IEnumerable
, кроме того, encType
также необходимо указывать при публикации файлов на сервере