Как интегрировать plupload в проект asp.net MVC2 - PullRequest
0 голосов
/ 23 августа 2011

Я пытаюсь использовать plupload в своем проекте asp.net MVC2, могу ли я это сделать? Пожалуйста, помогите мне, если сможете.

С наилучшими пожеланиями!

1 Ответ

0 голосов
/ 23 августа 2011

это то же самое, что и обычная загрузка файлов, но мне нравится plupload, я буду использовать в своем проекте, поэтому следующие коды будут работать с plupload

[HttpPost]
    public ActionResult Create(FormCollection collection)
    {
        // my project need single file upload so i get the first file
        // also you can write foreach statement to get all files
        HttpPostedFileBase postedFile = Request.Files[0];
        Image image = new Image();
        if (TryUpdateModel(image))
        {
            fRepository.AddImage(image);
            fRepository.Save();

            // Try to save file
            if (postedFile.ContentLength > 0)
            {
                string savePath = Path.Combine(Server.MapPath("~/Content/OtelImages/"), image.ImageID.ToString() +
                                                   Path.GetExtension(postedFile.FileName));
                postedFile.SaveAs(savePath);

                // Path for dbase
                image.Path = Path.Combine("Content/OtelImages/", image.ImageID.ToString() +
                                                   Path.GetExtension(postedFile.FileName));
            }

я не изменил коды, но если вам понадобится дальнейшаяпомогите пожалуйста спросите, я объясню

...