本文共 959 字,大约阅读时间需要 3 分钟。
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) { // ??????? // ?????????? int rowIndex = e.RowIndex; // ???????? GridViewRow row = GridView1.Rows[rowIndex]; // ???????????? string wjzh = row.Cells[1].Text;
// ??????// ????????????SQL????using (SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ToString())){ try { // ?????? SqlCommand sqlCommand = new SqlCommand("DELETE FROM QC_CSR WHERE wjzh = @wjzh", connection); sqlCommand.Parameters.AddWithValue("@wjzh", wjzh); // ???? connection.Open(); sqlCommand.ExecuteNonQuery(); connection.Close(); } catch (Exception ex) { // ???? if (!IsDebugEnabled) { throw new Exception("???????" + ex.Message); } else { LogHelper.Log("????????" + ex.Message); } }} }
转载地址:http://vofd.baihongyu.com/