Uploading multiple images + text fields in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T17:13:13Zhttp://stackoverflow.com/feeds/question/604640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc2Uploading multiple images + text fields in ASP.NET MVCGiovanni Galbo2009-03-03T00:26:04Z2009-06-17T16:25:05Z
<p>I'm very new to ASP.net MVC, so please be as descriptive as possible in your answer :)</p>
<p>Let me simplify what I'm trying to do. Imagine I have a form where you want to enter some information about a car. The fields might be: Make, Model, Year, Image1, Image2.</p>
<p>On the bottom of the form is a "Save" button. The associated Controller method will save Image1 and Image2 to disk, obtain their filenames and associate them with the car model, which will then be saved to the database.</p>
<p>Any ideas?</p>
<p>Thanks guys!</p>
<p><strong>Edit</strong></p>
<p><a href="http://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc/604720#604720">winob0t</a> got me most of the way there. The only outstanding issue is the following: Image1 and Image2 are not required fields, so I now I can save 0,1 or 2 images; but if the user only uploads 1 picture I have no way of knowing if it came from imageUpload1 or imageUpload2.</p>
<p>Again, any help is appreciated!</p>
http://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc/604720#6047204Answer by Heisenberg for Uploading multiple images + text fields in ASP.NET MVCHeisenberg2009-03-03T00:58:25Z2009-03-03T00:58:25Z<p>In your controller you can access the uploaded files as:</p>
<pre><code> if(Request.Files.Count > 0 && Request.Files[0].ContentLength > 0) {
HttpPostedFileBase postFile = Request.Files.Get(0);
string filename = GenerateUniqueFileName(postFile.FileName);
postFile.SaveAs(server.MapPath(FileDirectoryPath + filename));
}
protected virtual string GenerateUniqueFileName(string filename) {
// get the extension
string ext = Path.GetExtension(filename);
string newFileName = "";
// generate filename, until it's a unique filename
bool unique = false;
do {
Random r = new Random();
newFileName = Path.GetFileNameWithoutExtension(filename) + "_" + r.Next().ToString() + ext;
unique = !File.Exists(FileDirectoryPath + newFileName);
} while(!unique);
return newFileName;
}
</code></pre>
<p>The text fields will arrive at your controller action as per usual i.e. Request.Form[...]. Note that you will also need to set the enctype on the form to "multipart/form-data". It sounds like you understand enough about ASP.NET MVC to do the rest. Note also that you can declare your form tag in the aspx view as follows, though you can use the more traditional approach if you like.</p>
<pre><code><% using(Html.BeginForm<FooController>(c => c.Submit(), FormMethod.Post, new { enctype = "multipart/form-data", @id = formId, @class = "submitItem" })) { %>
<% } %>
</code></pre>
http://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc/1008163#10081630Answer by Mau for Uploading multiple images + text fields in ASP.NET MVCMau2009-06-17T16:25:05Z2009-06-17T16:25:05Z<p>if i do the same using Castle Mono Rail i will get the same results? i put Request.Files but i have issues, maybe its bc the framework i'm working with .Net Framework 2.0 and i coudnt get multiple files... i also tryed with HttpFileCollection without good results :(</p>