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

前端 未结 4 988
失恋的感觉
失恋的感觉 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:53

    This jQuery plugin was giving every generated input control the exact same name attribute.

    For this reason, the files were not posting.

    I built my own javascript solution.

    I will post a link to the code in a comment.

    Edit

    I revisited this and found that what I was trying to do wasn't very difficult at all. I got the the jquery multiple file upload plugin to work fine with my aspx form. I don't know why I was having so much trouble before.

    1.) Include the jQuery library on the web form:

    
    
                                     
                  
提交回复
热议问题