How to post an array of files in ASP.NET MVC 3?

前端 未结 2 822
孤城傲影
孤城傲影 2021-02-08 17:25

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.



        
2条回答
  •  北荒
    北荒 (楼主)
    2021-02-08 18:13

    Well i got almost a same case. But that is for nested array of files.

    using IEnumerable as an array([ ]) solved my problem. [] s

    [HttpPost]
    public ActionResult AddPart(IEnumerable[] files)
    

提交回复
热议问题