vote up 0 vote down star

In the View page, code is below:

<% =Html.BeginForm("About", "Home", FormMethod.Post, new {enctype="multipart/form-data "})%>
<input type ="file"  name ="postedFile" />
<input type ="submit"  name ="upload" value ="Upload" />
<% Html.EndForm(); %>

In the Controller, something like this:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult  About(HttpPostedFile postedFile)
{
//but postedFile is null 
View();
}

But postedFile is null, how to do it?

flag

5 Answers

vote up 1 vote down

Use HttpPostedFileBase and also name the parameter exactly as in the form. eg. if you have

<input type="file" id="file1" name="file1" />

you have to have the method head:

public ActionResult About(HttpPostedFileBase file1)
link|flag
And id and name need to be the same right? – cottsak Nov 16 at 11:23
vote up 1 vote down

Which version of MVC are you using? Right now with the RC candidate I tried using HttpPostedFile and I got an "does not have a blank constructor error." I had to use HttpPostedFileBase.

More importantly though, is the version of MVC you're running on, depending on the version, how your retrieve a posted file will be different.

link|flag
vote up 2 vote down

checkout Scott Hansleman's blog entry

link|flag
vote up 0 vote down

I also get some quirks with <%= Html.BeginForm ...%>. So, I use the using. Again, on the Controller side, I just grab my uploaded files form the request object.

Try this. It works:

<% using (Html.BeginForm("Post", "Home", FormMethod.Post, new {enctype = "multipart/form-data"}))
   {%>

    <input type="file" id="postedFile" name="PostedFile" />
    <input type="submit" />

<%
}

%>

[AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Post(FormCollection form)
    {
      HttpPostedFileBase postedFile =   Request.Files["PostedFile"];
        return RedirectToAction("Index");
    }
link|flag
the postedFile is still null – Spencer Feb 13 at 2:50
Just copy and paste my controller action and view. It works for me. Note that my action method is not taking HttpPostedFile as argument. – Pita.O Feb 13 at 8:17
vote up 3 vote down

This doesn't answer why your parameter is null, but you can dig into the request directly. This might not be the most "MVC" way of doing this though. try this in your method body:

var upload = Request.Files["postedFile"]
if (upload.ContentLength > 0)
{
  // Do whatever
}

To be more "MVC, "You could pull that code out of your controller into an IModelBinder implementation and using a custom object as a parameter to your method. This Scott Hanselman blog post shows the steps to implement a custom ModelBinder.

link|flag

Your Answer

Get an OpenID
or

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