我有一个带有名册/信息的 SQL Server。我想用仰卧起坐、俯卧撑和 Id 更新表格。我知道如何将信息插入到表中,但在更新部分遇到问题。
这是我的代码:
SqlConnection conns = new SqlConnection(ConfigurationManager.ConnectionStrings["TestDBConnectionString1"].ConnectionString);
SqlCommand cmd = new SqlCommand("UPDATE test SET SitUps = @SitUps, pushUps = @pushUps WHERE (Id = @Id)", conns);
cmd.CommandType = CommandType.Text;
Label sitL = ((Label)FormView2.FindControl("SitUpsLabel"));
Label pushL = ((Label)FormView2.FindControl("pushUpsLabel"));
Label IdL = ((Label)FormView2.FindControl("IdLabel"));
cmd.Parameters.AddWithValue("@SitUps", sitL.Text);
cmd.Parameters.AddWithValue("@pushUps", pushL.Text);
cmd.Parameters.AddWithValue("@Id", IdL.Text);
我收到此错误
System.NullReferenceException:对象引用未设置为对象的实例。
我很确定这是我对待Id
价值的方式。提前致谢!!