I have a problem with uploading file in asp.net mvc 2.
My controller function's parameter is a FormCollection type. Because number of fields are too many, I can't seperate each field as parameter. I have 2 upload file field in my form. How can i get uploaded files in my controller?
I tried this way:
public ActionResult CreateAgent(FormCollection collection, HttpPostedFileBase personImage)
{
...
}
but personImage was null. :(
or this way:
HttpPostedFileBase img = this.HttpContext.Request.Files[collection["personImage"]];
but img was null to. Also collection["personImage"] was the name of selected file (without path) and I can't cast it to HttpPostedFileBase.
Note that all fields must filled in one page. I can't let customer upload images in separate page!