将图像路径发送到数据库

时间:2012-06-29 18:20:51

标签: c# sql c#-4.0

我使用此代码将图像上传到服务器。是的,它的工作。但我需要将图像路径发送到我的数据库。我有一个数据库,其中包含Profiles表和ImagePath字段。

我该怎么做......

我的工作代码在这里

public partial class ProfileDetails2 : System.Web.UI.Page
   {
protected void Page_Load(object sender, EventArgs e)
{

}
protected void upload_Click(object sender, EventArgs e)
{
    int intFileSizeLimit = 10;
    string strFileNameWithPath = FileUpload1.PostedFile.FileName;
    string strExtensionName = System.IO.Path.GetExtension(strFileNameWithPath);
    string strFileName = System.IO.Path.GetFileName(strFileNameWithPath);
    int intFileSize = FileUpload1.PostedFile.ContentLength / 1024;


    strExtensionName = strExtensionName.ToLower();
    if (strExtensionName.Equals(".jpg") || strExtensionName.Equals(".gif"))
    {

        if (intFileSize < intFileSizeLimit)
        {

            FileUpload1.PostedFile.SaveAs(Server.MapPath("~/images/") + "img" + strExtensionName);

            lblMessage.Text = "Uploaded file details <hr />" +
                "File path on your Computer: " + strFileNameWithPath + "<br />" +
                "File Name: " + strFileName + "<br />" +
                "File Extension Name: " + strExtensionName + "<br />" +
                "File Size: " + intFileSize.ToString();

        }
        else
        {
            lblMessage.Text = "File size exceeded than limit " + intFileSizeLimit + " KB, Please upload smaller file.";
        }
    }
    else
    {
        lblMessage.Text = "Only .jpg or .gif file are allowed, try again!";
        lblMessage.ForeColor = System.Drawing.Color.Red;
    }
}

}

1 个答案:

答案 0 :(得分:0)

您可以使用

附加路径
string strFileNameWithPath = Request.PhysicalApplicationPath + "Uploads\" + FileUpload1.PostedFile.FileName;

这将为您提供应用程序根路径内的完整路径。

我认为这就是你要找的东西。