Is there a HTMLHelper for file upload? Specifically, I am looking for a replace of

<input type="file"/>

using ASP.NET MVC HTMLHelper.

Or, If I use

using (Html.BeginForm())

What is the HTML control for the file upload?

link|improve this question

72% accept rate
feedback

5 Answers

HTML Upload File ASP MVC 3.

Model: (Note that FileExtensionsAttribute is available in MvcFutures. It will validate file extensions client side and server side.)

public class ViewModel
{
    [Required, Microsoft.Web.Mvc.FileExtensions(Extensions = "csv", ErrorMessage = "Specify a CSV file. (Comma-separated values)")]
    public HttpPostedFileBase File { get; set; }
}

HTML View:

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.TextBoxFor(m => m.File, new { type = "file" })
    @Html.ValidationMessageFor(m => m.File)
}

Controller action:

[HttpPost]
public ActionResult Action(ViewModel model)
{
    if (ModelState.IsValid)
    {
        // Use your file here
        using (MemoryStream memoryStream = new MemoryStream())
        {
            model.File.InputStream.CopyTo(memoryStream);
        }
    }
}
link|improve this answer
feedback

I had this same question a while back and came across one of Scott Hanselman's posts:

Implementing HTTP File Upload with ASP.NET MVC including Tests and Mocks

Hope this helps.

link|improve this answer
Thanks, but I am specifically looking for an implementation of using (Html.BeginForm()), not other variants. – Graviton Nov 20 '08 at 15:28
feedback

You can also use:

@using (Html.BeginForm("Upload", "File", FormMethod.Post, new { enctype = "multipart/form-data" }))
{ 
    <p>
        <input type="file" id="fileUpload" name="fileUpload" size="23" />
    </p>
    <p>
        <input type="submit" value="Upload file" /></p> 
}
link|improve this answer
feedback

There's also a custom-made extension here.

link|improve this answer
feedback
up vote 1 down vote accepted

To use BeginForm, here's the way to use it:

 using(Html.BeginForm("uploadfiles", 
"home", FormMethod.POST, new Dictionary<string, object>(){{"type", "file"}})
link|improve this answer
First you mention how to generate an input element, and now you talk about how to generate a form element? Is this really your answer? – J. Pablo Fernández Jun 28 '09 at 11:12
You are right; I have just edited my answer. – Graviton Jun 28 '09 at 11:24
feedback

Your Answer

 
or
required, but never shown

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