Trying to upload a file with ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:21:10Z http://stackoverflow.com/feeds/question/718400 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc 2 Trying to upload a file with ASP.NET MVC Pure.Krome 2009-04-05T05:32:27Z 2009-11-10T22:56:47Z <p>I am trying to upload a file with ASP.NET MVC.</p> <p>The following code work perfectly fine:</p> <pre><code>// Read in the image data. byte[] binaryData = null; HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"]; if (uploadedFile != null &amp;&amp; uploadedFile.ContentLength &gt; 0) { binaryData = new byte[uploadedFile.ContentLength]; uploadedFile.InputStream.Read(binaryData, 0, uploadedFile.ContentLength); } </code></pre> <p>But what I am trying to do is use the new <code>FileCollectionModelBinder</code> found in the <em>futures</em> assembly.</p> <p>I've found these two blog posts <a href="http://msmvps.com/blogs/luisabreu/archive/2009/03/17/the-mvc-framework-working-with-uploaded-files.aspx" rel="nofollow">here</a> and <a href="http://www.hanselman.com/blog/ASPNETMVCBetaReleasedCoolnessEnsues.aspx" rel="nofollow">here</a> explaining what to do. I follow these instructions but havne't had any luck -> the <code>file</code> object is always <code>null</code>.</p> <p>Here is my method.</p> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult Create([Bind(Include = "Subject, Content")] Post post, HttpPostedFileBase file) { UpdateModel(post); ... } </code></pre> <p>Notice how i'm trying to upload a file AND upload some post information, to a Post object.</p> <p>Can anyone make any suggestions?</p> <p>For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-</p> <pre><code>&lt;form method="post" enctype="multipart/form-data" action="/post/create"&gt; </code></pre> http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc/718425#718425 0 Answer by cottsak for Trying to upload a file with ASP.NET MVC cottsak 2009-04-05T05:48:45Z 2009-04-05T05:48:45Z <p>For the past week i have been building an upload/file manager system for my MVC project and my original attempt was to post additional post data with the multipart files values. this proved too difficult for my time constraints. my approach now is to create the "respective record" to which files/images may be 'attached' (as it is in my case), -then- upload ('attach') the files/images after the record is present.</p> <p>for example: 1) create event record, 2) attach images with upload control</p> <p>My action that receives the multipart post uses the concepts from <a href="http://www.hanselman.com/blog/ABackToBasicsCaseStudyImplementingHTTPFileUploadWithASPNETMVCIncludingTestsAndMocks.aspx" rel="nofollow">Hanselman's post</a>.</p> <p>I cant say i've tried the built-in complex-type binding for files (HttpPostedFileBase) but i'd suggest that it would be more complex than my present solution given that from reading the post Hanselman wrote above - i've learned that the files collection returned in the <code>Request</code> is only a loosely typed collection.</p> <p>I'd suggest sticking to your original code and trying to make that more safe for your purposes.</p> http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc/718948#718948 2 Answer by Pure.Krome for Trying to upload a file with ASP.NET MVC Pure.Krome 2009-04-05T13:45:27Z 2009-04-06T11:28:03Z <p>No bloody way :(</p> <p>I figured out that answer and it's pretty lame.</p> <p>I had to have the argument <em>NAME</em> being identical to the Id/Name values of the input type="file" element!!! (not sure if it's either or both element values ... i didn't check that bit out).</p> <p>so this is the answer.</p> <h3>Html input element. (note the value of the Id/Name)</h3> <pre><code>&lt;input type="file" id="imageFileName" name="imageFileName" class="upload" /&gt; </code></pre> <h3>Controller method</h3> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult Create([Bind(Include = "Subject, Content")]Post post, HttpPostedFileBase imageFileName) { ... } </code></pre> <p>shees!</p> http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc/720729#720729 0 Answer by joshcomley for Trying to upload a file with ASP.NET MVC joshcomley 2009-04-06T09:11:51Z 2009-04-23T13:39:34Z <p>Remember you also need to open your form like this:</p> <pre><code>&lt;form enctype="multipart/form-data" ... </code></pre> http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc/1711842#1711842 0 Answer by Tim Jones for Trying to upload a file with ASP.NET MVC Tim Jones 2009-11-10T22:56:47Z 2009-11-10T22:56:47Z <p>Not sure if this is relevant to the question, but I've just found a way to get model binding for HttpPostedFileBase working, within complex objects. Unfortunately I had to make a change to the ASP.NET MVC source code, so it isn't for everybody.</p> <p>In System.Web.Mvc.ValueProviderDictionary.PopulateDictionary(), the value provider is being populated with the contents of Request.Form, Request.QueryString, and RouteData - but NOT Request.Files. Add the following lines to "fix" this (I say "fix" because there may be a reason the ASP.NET MVC team didn't do it in the first place).</p> <pre><code>HttpFileCollectionBase files = ControllerContext.HttpContext.Request.Files; if (files != null) { string[] keys = files.AllKeys; foreach (string key in keys) { HttpPostedFileBase file = files[key]; ValueProviderResult result = new ValueProviderResult(file, file.FileName, currentCulture); AddToDictionaryIfNotPresent(key, result); } } </code></pre>