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)
-
3http://www.whathaveyoutried.com – Jay Blanchard Feb 01 '13 at 13:10
2 Answers
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" />

- 10,288
- 22
- 81
- 132
Well you're not providing much information here therefore it's hard to answer your question. But I'll just give it a shot anyway.
You could try a solution like Plupload:
Allows you to upload files using HTML5 Gears, Silverlight, Flash, BrowserPlus or normal forms, providing some unique features such as upload progress, image resizing and chunked uploads.
And there is already a question here about using Plupload with ASP.NET/C#
Plupload is very extensible and you can customize it to fit your own needs by enabling / disabling the uploading options it has to offer.

- 1
- 1

- 3,632
- 2
- 21
- 35