Search code examples
javascriptjqueryasp.netfile-uploadmulti-upload

jquery multi file upload for asp.net


i become stuck in a problem kindly help me in this matter.... problem is that i want a jquery multi file uploader to embed in asp.net page and requirement 1)no use of flash plugin 2)it support IE 3)no use of html 5 4) select multi files at a time like (gmail when we send email)


Solution

  • For uploading multiple files using JQuery. I use JQuery Multifile plugin which is simple and easy to see. See this link JQuery Multiple File Upload

    Just inlcude this library and JQuery and its syntax is like

    For html input

    <input type="file" class="multi"/>
    

    For Asp.net File upload control

    <asp:FileUpload ID="fileup" runat="server" CssClass="multi" />