ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin

前端 未结 4 977
失恋的感觉
失恋的感觉 2020-12-24 09:54

I know how to upload with ASP.net\'s FileUpload control.

What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files.

Here is e

4条回答
  •  伪装坚强ぢ
    2020-12-24 10:54

    It's been a bit since I did that kind of thing in .NET, but once you begin cloning form inputs dynamically, I think you have to go out to Request.Form and find the submitted values manually. I wrote up the jQuery code to clone some (non-file) inputs with sequential identifiers here. As long as you have unique identifiers, you can run a loop to see if Request.Form["MultiFile1_F" + counter] exists and go from there.

提交回复
热议问题