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

I have a form upload that works but I would like to pass model information for my database to save the file with a different name of course.

Here is my Razor view:

@model CertispecWeb.Models.Container

@{
  ViewBag.Title = "AddDocuments";
}

<h2>AddDocuments</h2>

@Model.ContainerNo


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

Here is my Controller:

[HttpPost]
public ActionResult Uploadfile(Container containers, HttpPostedFileBase file)
   {

         if (file.ContentLength > 0)
         {
            var fileName = Path.GetFileName(file.FileName);
            var path = Path.Combine(Server.MapPath("~/App_Data/Uploads"), containers.ContainerNo);
            file.SaveAs(path);
         }

            return RedirectToAction("Index");
   }

The model information is not passed through to the controller. I have read that I might need to update the model, how would I do this ?

share|improve this question
1  
Refer stackoverflow.com/questions/9411563/… for a related problem – Lijo Dec 20 '12 at 14:45

2 Answers

up vote 83 down vote accepted

Your form doesn't contain any input tag other than the file so in your controller action you cannot expect to get anything else than the uploaded file (that's all that's being sent to the server). One way to achieve this would be to include a hidden tag containing the id of the model which will allow you to retrieve it from your datastore inside the controller action you are posting to (use this if the user is not supposed to modify the model but simply attach a file):

@using (Html.BeginForm("Uploadfile", "Containers", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.HiddenFor(x => x.Id)
    <input type="file" name="file" id="file" />
    <input type="submit" value="submit" />
}

and then in your controller action:

[HttpPost]
public ActionResult Uploadfile(int id, HttpPostedFileBase file)
{
    Containers containers = Repository.GetContainers(id);
    ...
}

On the other hand if you wanted to allow the user to modify this model then you will need to include the proper input fields for each field of your model that you want to be sent to the server:

@using (Html.BeginForm("Uploadfile", "Containers", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.TextBxFor(x => x.Prop1)
    @Html.TextBxFor(x => x.Prop2)
    @Html.TextBxFor(x => x.Prop3)
    <input type="file" name="file" id="file" />
    <input type="submit" value="submit" />
}

and then you will have the default model binder reconstruct this model from the request:

[HttpPost]
public ActionResult Uploadfile(Container containers, HttpPostedFileBase file)
{
    ...
}
share|improve this answer
3  
Thank you very much, works great. Francis – Francis Jan 24 '11 at 16:48
+1 great answer dude – andy Mar 14 '12 at 4:45
I am getting file as null and Request.Files.Count is 0 too, would there be any difference if the form is an AjaxForm and there are routeValues as well? – bjan May 30 '12 at 10:48
1  
+1: This Q/A isn't exactly like the problem I was looking up, but your answer provided me the insight I needed to figure my problem out. Thanks. – Joel Etherton Jun 13 '12 at 12:52
+1 to you both guys :) very helpful – sh0uzama Sep 7 '12 at 16:03

If you won't always have images posting to your action, you can do something like this:

[HttpPost]
public ActionResult Uploadfile(Container container, HttpPostedFileBase file) 
{
    //do container stuff

    if (Request.Files != null)
    {
        foreach (string requestFile in Request.Files)
        {
            HttpPostedFileBase file = Request.Files[requestFile]; 
            if (file.ContentLength > 0)
            {
                string fileName = Path.GetFileName(file.FileName);
                string directory = Server.MapPath("~/App_Data/uploads/");
                if (!Directory.Exists(directory))
                {
                    Directory.CreateDirectory(directory);
                }
                string path = Path.Combine(directory, fileName);
                file.SaveAs(path);
            }
        }
    }

} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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