使用Label.Text更新表

时间:2012-07-07 19:20:05

标签: asp.net

一个简单的更新操作会抛出一个错误,例如“'''附近的语法不正确。我的代码在下面。

    protected void Button1_Click(object sender, EventArgs e)
    {
        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
        con.Open();
        string insCmd = "update Reg set (DateOfBirth,Experience)=@DateOfBirth,@Experience where UserName='"+Label3.Text+"'";
        SqlCommand insertUser = new SqlCommand(insCmd, con);
        insertUser.Parameters.AddWithValue("@Experience",TextBoxex.Text);
        insertUser.Parameters.AddWithValue("@DateOfBirth",TextBoxdob.Text);
        try
        {
            insertUser.ExecuteNonQuery();
            con.Close();
            Response.Redirect("Admin.aspx");
        }

1 个答案:

答案 0 :(得分:1)

Set周围的列名中删除括号,如下所示:

string insCmd = "update Reg set DateOfBirth=@DateOfBirth where UserName='"+Label3.Text+"'";