0

在这里,我已经编写了图像上传控件的编码。但是在 SqlConnection 位置出现了一些 RUNTIME 错误。错误母猪首先我有1.Image
名称框 - 文本框
2.Image Upload 控件 - asp imageupload 控件
3.Upload 按钮

错误:对象同步方法是从未同步的代码块中调用的。

下面的代码

public partial class ProfileDetails : System.Web.UI.Page
 {
  string connStr =  ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
//SqlConnection con = new SqlConnection("Data Source=CHATHU-LAPTOP;Initial Catalog=ProfilemgtDB;User ID=sa;Password=sa123");
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{

}

protected void Upload_Click(object sender, EventArgs e)
{
    string path = Server.MapPath("images/");
    if (FileUpload1.HasFile)
    {
        string ext = Path.GetExtension(FileUpload1.FileName);
        if (ext == ".jpg" || ext == ".png")
        {
            FileUpload1.SaveAs(path + FileUpload1.FileName);
            string name = "~/images/" + FileUpload1.FileName;
            string s = "Insert into Profile values('" + TextBox12.Text.Trim() + " '.'" + name + "' )";

            SqlConnection con = new SqlConnection(connStr);
            SqlCommand cmd = new SqlCommand(s, con);
            con.Open();
            cmd.ExecuteNonQuery();
            con.Close();
            Response.Write("File Uploaded");
        }
        else
        {
            Response.Write("You can upload only JPG & PNG");
        }

    }
    else {

        Response.Write("Please Select File");
    }
    }
}

错误:对象同步方法是从未同步的代码块中调用的。

4

1 回答 1

0

尼梅什,

我没有在代码中看到任何错误。但是,您可能需要检查您的web.config是否包含与您的代码中提到的相同的 connectionStrings 名称(即 ConnectionString)。

另外,请参考以下链接

http://www.ezzylearning.com/tutorial.aspx?tid=4287517

http://forums.asp.net/t/1757347.aspx/1

希望这可以帮助。

于 2012-06-29T19:21:48.640 回答