show/hide this revision's text 3 deleted 20 characters in body; edited tags

Hi folks, i'm

I am trying to upload a file with ASP.NET MVC.

The following code work perfectly fine:-

// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"];
if (uploadedFile != null &&
    uploadedFile.ContentLength > 0)
    {
        binaryData = new byte[uploadedFile.ContentLength];
        uploadedFile.InputStream.Read(binaryData, 
                                      0,
                                      uploadedFile.ContentLength);
    }

But what i'm I am trying to do is use the new FileCollectionModelBinder found in the futures assembly.

I've found these two blog posts here and here explaining what to do. I follow these instructions but havne't had any luck -> the file object is always null.

Here is my method.

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

Notice how i'm trying to upload a file AND upload some post information, to a Post object.

Can anyone make any suggestions?

For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-

<form method="post" enctype="multipart/form-data" action="/post/create">

cheers!

show/hide this revision's text 2 deleted 8 characters in body

Hi folks, i'm trying to upload a file with ASP.NET MVC.

The following code work perfectly fine :-

// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"];
if (uploadedFile != null &&
    uploadedFile.ContentLength > 0)
    {
        binaryData = new byte[uploadedFile.ContentLength];
        uploadedFile.InputStream.Read(binaryData, 
                                      0,
                                      uploadedFile.ContentLength);
    }

But what i'm trying to do is use the new FileCollectionModelBinder found in the futures assembly.

I've found these two blog posts here and here explaining what to do. I follow these instructions but havne't had any luck -> the files file object is always null.

Here is my method.

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]
                           Post post, 
                           IEnumerable<HttpPostedFileBase> filesHttpPostedFileBase file)
{
    UpdateModel(post);
    ...
}

Notice how i'm trying to upload a file AND upload some post information, to a Post object.

Can anyone make any suggestions?

For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-

<form method="post" enctype="multipart/form-data" action="/post/create">

cheers!

show/hide this revision's text 1

Trying to upload a file with ASP.NET MVC

Hi folks, i'm trying to upload a file with ASP.NET MVC.

The following code work perfectly fine :-

// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"];
if (uploadedFile != null &&
    uploadedFile.ContentLength > 0)
    {
        binaryData = new byte[uploadedFile.ContentLength];
        uploadedFile.InputStream.Read(binaryData, 
                                      0,
                                      uploadedFile.ContentLength);
    }

But what i'm trying to do is use the new FileCollectionModelBinder found in the futures assembly.

I've found these two blog posts here and here explaining what to do. I follow these instructions but havne't had any luck -> the files object is always null.

Here is my method.

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]
                           Post post, 
                           IEnumerable<HttpPostedFileBase> files)
{
    UpdateModel(post);
    ...
}

Notice how i'm trying to upload a file AND upload some post information, to a Post object.

Can anyone make any suggestions?

For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-

<form method="post" enctype="multipart/form-data" action="/post/create">

cheers!