C# datagridview输入数据后,怎样通过保存修改按钮把数据保存到数据库中,要源代码
发布网友
发布时间:2023-03-16 22:23
我来回答
共3个回答
热心网友
时间:2023-10-31 15:55
string a = this.GridView2.DataKeys[e.RowIndex][0].ToString();
string str = ((TextBox)this.GridView2.Rows[e.RowIndex].Cells[0].Controls[0]).Text;
string ds = ((TextBox)this.GridView2.Rows[e.RowIndex].Cells[1].Controls[0]).Text;
SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True");
con.Open();
SqlCommand cmd=new SqlCommand("update T1 set T_title='"+str+"' ,T_date='"+ds+"' where T_id='"+a+"'",con);
if (Convert.ToInt32(cmd.ExecuteNonQuery()) > 0)
{
Response.Write("更新成功");
}
else
Response.Write("更新失败");
bind();
}
热心网友
时间:2023-10-31 15:55
多张表查询绑定的就会保存不了..起码很多人做不到。。。
热心网友
时间:2023-10-31 15:55
不需要代码都可以实现,留联系远程教你。。。