private void cmdDelete(GridView g1,GridViewDeleteEventArgs e)
{
string id = g1.DataKeys[e.RowIndex].Value.ToString();
string SqlStr = "delete from PersonInfo where id=" + id;
using (SqlConnection conn = new SqlConnection(ConnStr))
{
SqlCommand cmd = new SqlCommand(SqlStr, conn);
try
{
conn.Open();
int iValue = cmd.ExecuteNonQuery();
if (iValue > 0)
{
cmd.CommandText = "Select * from PersonInfo";
SqlDataReader dr = cmd.ExecuteReader();
this.GridView1.Caption = "人员信息表";
this.GridView1.DataSource = dr;
this.GridView1.DataBind();
}
}
元芳怎么了
胡说叔叔
慕的地8271018
相关分类