show/hide this revision's text 2 Fixed typo.

No bloody way :(

I figured out that answer and it's pretty lame.

I had to have the argument NAME being identical to the Id/Name values of the input type="file" element!!! (not sure if it's either or both element values ... i didn't check that bit out).

so this is the answer.

Html input element. (not note the value of the Id/Name)

<input type="file" id="imageFileName" name="imageFileName" class="upload" />

Controller method

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]Post post,
    HttpPostedFileBase imageFileName)
{
...
}

shees!

show/hide this revision's text 1

No bloody way :(

I figured out that answer and it's pretty lame.

I had to have the argument NAME being identical to the Id/Name values of the input type="file" element!!! (not sure if it's either or both element values ... i didn't check that bit out).

so this is the answer.

Html input element. (not the value of the Id/Name)

<input type="file" id="imageFileName" name="imageFileName" class="upload" />

Controller method

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]Post post,
    HttpPostedFileBase imageFileName)
{
...
}

shees!