0

我的应用程序(c#)中有一个字段可以将图像保存到数据库中。我编写了以下代码将图像保存到文件夹中,然后将路径保存到数据库中。但是图像没有保存到文件夹中。

string imgName = FileUpload1.FileName.ToString();
        string imgPath = null;
        if (imgName == "")
        {
            //int taxiid = Convert.ToInt32(HiddenField1.Value);
            Taxi t = null;
            t = Taxi.Owner_GetByID(tx.Taxi_Id, USM.OrgId);
            imgPath = t.CarImage;
        }
        else
        {
            imgPath = "ImageStorage/" + imgName;
        }
        FileUpload1.SaveAs(Server.MapPath(imgPath));
        tx.CarImage = imgPath;
4

1 回答 1

0

我认为您的问题是您将名称添加到我尝试的路径中,如果我像这样保存它,对我来说它工作正常:

FileUpload1.SaveAs(Server.MapPath("ImageStorage") + imgName);

正如@Rahul 提到的,添加一个try catch 来防止错误。

你检查

if (imgName == "")

根据我的理解,imgName 不可能是“”,但无论如何你最好添加一个检查文件上传是否有文件。

if (FileUploadControl.HasFile)

于 2013-04-25T13:29:38.777 回答