I would like to be able to post multiple files in one form. I would like to pass these files as an array of files. For example I would like to do this.
<input type="file" name="files[0]" />
<input type="file" name="files[1]" />
<input type="file" name="files[2]" />
Then I would like to be able to receive these files as an array in the Controller. I've tried this.
public ActionResult AddPart(HttpPostedFileBase[] files)
But that doesn't work. I've googled it but all I can find is examples on uploading one file. Does anyone know how to do this using MVC3 C#.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…