好友
阅读权限10
听众
最后登录1970-1-1
|
mjqt
发表于 2017-4-26 15:00
int stre = Convert.ToInt32(dateview.SelectedRows[1].Cells[0].Value);
int stre = Convert.ToInt32(dateview.Rows[e.RowIndex].Cells[1].Value.ToString());
大佬们,获取选中的值之后
string connectionstrng = ConfigurationManager.ConnectionStrings["Student"].ConnectionString;
SqlConnection con = new SqlConnection(connectionstrng);
string cmdText = "Update stuinfo SET Id='"+number_text.Text+ "',Name='"+ name_text.Text + "',Math='"+math_text.Text+ "' where Id='"+str+"'";
if (name_text.Text != null && number_text.Text != null && math_text.Text != null)
{
using (SqlCommand cmd = new SqlCommand(cmdText, con))
{
con.Open();
if (cmd.ExecuteNonQuery()!=-1)
{
MessageBox.Show("修改成功");
this.Close();
}
else
{
MessageBox.Show("格式错误或信息不全");
}
}
con.Close();
}
else
{
MessageBox.Show("格式错误");
}
为什么数据区的之没更改啊? |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|