Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to upload an Excel file in ASP.NET MVC 3.0. How can I upload the file using html input file control?

share|improve this question
where do you want to store the file ? database or server harddisk? For the first part the second answer will do the trick. For the second part you will need to setup a file path and a place to store the files and the you should use this : 4guysfromrolla.com/webtech/faq/FileSystemObject/faq4.shtml – Floradu88 Jul 21 '11 at 11:36
4  
@madicemickael The reference you make is for WScript/ASP Classic. The requested question is regarding use in .Net 4 (MVC 3) – Tracker1 Oct 3 '11 at 23:49

3 Answers

up vote 424 down vote accepted

You don't use a file input control. Server side controls are not used in ASP.NET MVC. Checkout the following blog post which illustrates how to achieve this in ASP.NET MVC.

So you would start by creating an HTML form which would contain a file input:

@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <input type="file" name="file" />
    <input type="submit" value="OK" />
}

and then you would have a controller to handle the upload:

public class HomeController : Controller
{
    // This action renders the form
    public ActionResult Index()
    {
        return View();
    }

    // This action handles the form POST and the upload
    [HttpPost]
    public ActionResult Index(HttpPostedFileBase file)
    {
        // Verify that the user selected a file
        if (file != null && file.ContentLength > 0) 
        {
            // extract only the fielname
            var fileName = Path.GetFileName(file.FileName);
            // store the file inside ~/App_Data/uploads folder
            var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
            file.SaveAs(path);
        }
        // redirect back to the index action to show the form once again
        return RedirectToAction("Index");        
    }
}
share|improve this answer
2  
Thank you very much for such fast reply. Its working and has helped me sort out my problem. – user637197 Mar 4 '11 at 12:57
2  
Working on something a little more complex at the moment, but as a start point, you have pushed me very far in the correct direction! Thanks for this! :) – Wil May 17 '11 at 13:45
87  
Nice answer. It's also worth noting that if you're trying to upload large files (greater than the default 4 MB) you'll want to set <httpRuntime maxRequestLength="x" /> in your web.config, where x is the number of KB allowed for upload. – rsbarro May 22 '11 at 20:33
31  
Another point is you can replace the controller and action names (strings) in the Html.BeginForm() call like so: Html.BeginForm(null, null, FormMethod.Post, new { enctype = "multipart/form-data" }). This is useful if it is a partial view that is called from multiple parent views (or similar). – Cymen May 23 '11 at 19:39
3  
If users need to link to the file from other pages, you can replace ~/App_Data/ with ~/Content/ – tomwayson Oct 28 '11 at 20:39
show 3 more comments

to transfer to byte[] (e.g. for saving to DB):

using (MemoryStream ms = new MemoryStream()) {
    file.InputStream.CopyTo(ms);
    byte[] array = ms.GetBuffer();
}
share|improve this answer
7  
using (MemoryStream ms = new MemoryStream()) { /* ... */ } – enashnash Oct 3 '11 at 10:53
1  
byte[] data = File.ReadAllBytes(filepath) much better. – Elisa Feb 22 at 19:26
Do you still have to upload the file to the App_Data (or equivalent) folder first, before attempting to convert it to a byte array, or can you do this direct from the file on disk? – Brett Rigby Mar 22 at 21:43
nope, all things happen in memory – Arthur Mar 28 at 7:03

in the view:

<form action="Categories/Upload" enctype="multipart/form-data" method="post">
    <input type="file" name="Image">
    <input type="submit" value"Save">
</form>

while the following code in the controller:

  public ActionResult Upload()
    {
        foreach (string file in Request.Files)
        {
            var hpf = this.Request.Files[file];
            if (hpf.ContentLength == 0)
            {
                continue;
            }

            string savedFileName = Path.Combine(
                AppDomain.CurrentDomain.BaseDirectory, "PutYourUploadDirectoryHere");
                savedFileName = Path.Combine(savedFileName, Path.GetFileName(hpf.FileName));

            hpf.SaveAs(savedFileName);
        }

    ...
    }
share|improve this answer

protected by Community Dec 2 '11 at 15:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.