0

我尝试在我的 asp.net MVC2 项目中使用 plupload,我可以这样做吗?如果可以,请帮助我。

此致!

4

1 回答 1

0

它与普通文件上传相同,但我喜欢我将在我的项目中使用的 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));
            }

我没有更改代码,但如果您需要任何进一步的帮助,请询问,我会解释

于 2011-08-23T04:23:11.430 回答