无法在我的网站文件夹中上传图片

时间:2013-07-08 05:08:29

标签: asp.net sql-server-2008 c#-4.0

我正在尝试在我的网站文件夹中上传图片,但它没有上传 在我的数据库中,我有“照片”列用于存储图像名称,我将图像存储在images / 1 /中。 images文件夹位于网站的根级别。在我的本地主机上,它工作得非常好,但我的网络服务器上却没有发生同样的情况 如果我跳过照片上传,则会正确插入所有值。但是否则没有插入任何内容  以下是我的代码:

       //this part works fine

        dr["EmailAddress"] = txtEmail.Text;
        dr["LoginEmailAddress"] = txtUserName.Text;
        dr["Password"] = txtPassword.Text;
        dr["IsAgent"] = rdAgent.Checked;
        dr["IsManager"] = rdManager.Checked;

        //below is code to upload photograph, where photograph is column name in 
        //database and working fine on localhost

       if(URLMessage.URLAction ==URLAction.update )
            dr["Photograph"] = WebHelper.SaveUploadFile(1, flPhoto, dr["Photograph"], lblRemove .Text .Equals ("Upload"));
        else 
            dr["Photograph"] = WebHelper.SaveUploadFile(1,flPhoto, dr["Photograph"], true);

我的web.config如下:

        <appSettings>
        <add key="connectionString" value="Data Source=localhost;Initial Catalog=dbABC;user id=abc; password=kashmirmed@123#;" />
        <add key="siteFileURL" value="abc.in/images/" />
        <add key="SiteFileFolder" value="abc.in\images\1\" />
        </appSettings>

其中abc.in是网站名称

0 个答案:

没有答案