ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:49:29Zhttp://stackoverflow.com/feeds/question/562696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin5ASP.net - Multiple Upload with jQuery Multiple File Upload PluginRonnie Overby2009-02-18T20:31:09Z2009-11-15T16:11:15Z
<p>I know how to upload with ASP.net's FileUpload control.</p>
<p>What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files.</p>
<p>Here is exactly what it does when multiple files are selected for upload:</p>
<pre><code><input type="file class="multi MultiFile" id="MultiFile1_F3" name="file1[]" style="position: absolute; top: -3000px;">
</code></pre>
<p>
</p>
<p>But I cannot figure out how to manipulate these files from asp.net.
I have tried using Request.Files as the following link instructs:
<a href="http://stackoverflow.com/questions/363286/asp-net-upload-of-multiple-files-after-choosing-them-from-jquery">http://stackoverflow.com/questions/363286/asp-net-upload-of-multiple-files-after-choosing-them-from-jquery</a></p>
<p>That doesn't work. I think that only works for controls marked with runat="server" at compile time.</p>
<p>Does anyone know how to do this? Maybe something in Request.Form...?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/562726#5627260Answer by Tom for ASP.net - Multiple Upload with jQuery Multiple File Upload PluginTom2009-02-18T20:38:50Z2009-02-18T20:38:50Z<p>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 <a href="http://www.thosecleverkids.com/blog/2007/12/11/clone-table-rows-with-form-elements-in-a-net-style/" rel="nofollow">here</a>. 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.</p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/567910#5679104Answer by Chris Hynes for ASP.net - Multiple Upload with jQuery Multiple File Upload PluginChris Hynes2009-02-20T00:55:17Z2009-02-20T00:55:17Z<p>Two things to check:</p>
<ul>
<li>Make sure your form has the enctype="multipart/form-data" attribute set. This is required to enable uploads.</li>
<li>Make sure all file inputs have both id and name attributes set. For some reason, if you don't set both, wierd things happen.</li>
</ul>
<p>Also, runat="server" shouldn't have anything to do with whether Request.Files works or not -- this is more an issue of the browser actually posting the files.</p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/571062#5710621Answer by Ronnie Overby for ASP.net - Multiple Upload with jQuery Multiple File Upload PluginRonnie Overby2009-02-20T20:13:48Z2009-04-14T21:21:17Z<p>This jQuery plugin was giving every generated input control the exact same name attribute. </p>
<p>For this reason, the files were not posting.</p>
<p>I built my own javascript solution.</p>
<p>I will post a link to the code in a comment.</p>
<h2>Edit</h2>
<p>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.</p>
<p>1.) Include the jQuery library on the web form:
<pre><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" /></pre></p>
<p>2.) Reference the multiple file plugin on the web form (<a href="http://www.fyneworks.com/jquery/multiple-file-upload/" rel="nofollow">Download it here</a>):</p>
<pre><script src="jquery.MultiFile.pack.js" type="text/javascript"></pre>
<p>3.) Add a file input on your web form with class="multi":</p>
<pre><input type="file" class="multi" /></pre>
<p>4.) Execute some code or call a method like this on form submission:</p>
<pre><code> void SendMail(string from, string to, string subject, string body, string smtpServer)
{
// create mail message
MailMessage mail = new MailMessage(from, to, subject, body);
// attach posted files
for (int i = 0; i < Request.Files.Count; i++)
{
HttpPostedFile file = Request.Files[i];
mail.Attachments.Add(new Attachment(file.InputStream, file.FileName));
}
//send email
new SmtpClient(smtpServer).Send(mail);
}
</code></pre>
<p>This is all that I had to do to attach multiple files to an email sent from an aspx page.</p>
<p>If you want to increase the total size of the files that can be uploaded, add this to your web.config file:</p>
<pre><code><system.web>
<httpRuntime executionTimeout="240" maxRequestLength="30720"/>
</system.web>
</code></pre>
<p>The executionTimeout is measured in seconds and maxRequestLength is measured in kilobytes. In this example, the request will timeout after 4 minutes and will allow a 30mb request.</p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/1275161#12751610Answer by SVT for ASP.net - Multiple Upload with jQuery Multiple File Upload PluginSVT2009-08-13T23:09:03Z2009-08-13T23:09:03Z<p>Hi Ronnie,</p>
<p>I know that your source code works well, but I have an other issue at the moment to send the request as POST method, because when you used server control as this works, but the problem that I have is when I send the request by jQuery ($Ajax) and with the Request.Files just has the last file that you was selected, you have any idea ?</p>
<p>Regards! </p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/1599310#15993100Answer by Aswin for ASP.net - Multiple Upload with jQuery Multiple File Upload PluginAswin2009-10-21T07:42:53Z2009-10-21T07:42:53Z<p>Hi,</p>
<p>I uploaded 2 files thru jquery multiple file upload plugin
But i get 0 in Request.Files.Count in For loop.</p>
<p>Please help</p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin/1737953#17379530Answer by dd for ASP.net - Multiple Upload with jQuery Multiple File Upload Plugindd2009-11-15T16:11:15Z2009-11-15T16:11:15Z<p>good stackoverflow...</p>