I have problem. I use html5 input type file where. But when I send selected files to controller, list of HttpPostedFileBase has good count but every file is the same. Example I select files:
- 1.xml
- 2.xml
- 3.xml
List has count 3 and every of rows are 1.xml.
Code View form:
<form target="response" action="/test/Upload" method="post" enctype="multipart/form-data">
<input type="file" accept="text/xml" id="files" name="files[]" multiple="multiple"/><br/>
Controller:
[HttpPost]
public ActionResult Upload(List<HttpPostedFileBase> files)
{
Any code Here....
}