vote up 0 vote down star

Hi,

I'm big fan of the MVVM pattern, in particular while using the ASP.NET MVC Framework (in this case v2 preview 2).

But I'm curious if anyone knows how to use it when doing file uploads?

public class MyViewModel
{
    public WhatTypeShouldThisBe MyFileUpload { get; set; }
}
flag

3 Answers

vote up 1 vote down check

I have a production asp.net mvc site running with a jQuery multi-file uploader that i wrote. This answer has most of the code included in it so that should get you started with uploads in MVC. The question actually asks about storing the uploaded file in a Stream and i use a byte[], but you'll see in the answer how my code can apply to both scenarios.

link|flag
vote up 0 vote down

Hi there:

Usually HttpFileCollection is enough if you are using the standard component (System.IO.Path).

take note that HttpFileCollection is a collection of HttpPostedFile, i.e. you can upload many files at once.

link|flag
It is, but it kind of breaks the MVVM pattern - having everything in one place. I suppose the model could check the http context itself, but that somehow smells all wrong. – Kieron Nov 8 at 9:42
vote up 0 vote down

Hello. I would think byte[] would be enough to store the uploaded file, for example in my upload action, I would do sth like this:

        foreach (string file in Request.Files)
        {
            HttpPostedFileBase hpf = Request.Files(file) as HttpPostedFileBase;
            if (hpf.ContentLength == 0)
            {
                continue;
            }


            //This would be the part to get the data and save it to the view
            byte[] origImageData = new byte[(int)hpf.ContentLength - 1 + 1];
            hpf.InputStream.Read(origImageData, 0, (int)hpf.ContentLength);


        }

Hope it helps some how.

link|flag

Your Answer

Get an OpenID
or

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