Internet Explorer (from versions 4 to 7, at least) limits the number of files uploaded using a single ‘input type=’file” form field to one. What is the best approach to take if I want to upload more than one file in a single HTTP POST request?
Share
You have to include multiple
inputcontrols, one per file to be uploaded.If you don’t know how many you want ahead of time, you can use jQuery (or plain javascript) to create them on-the-fly.