主题:各位达人帮帮小弟吧
string sqlconn = "server=localhost;;database=ACCOUNTING;Trusted_connection=true";
SqlConnection myconnecttion = new SqlConnection(sqlconn);
myconnecttion.Open();
string value1 = GridView1.SelectedRow.Cells[0].ToString();
string updatacount = string.Format("UPDATE PZ SET PZ_check='1'where pz_num='{0}'",value1);
SqlCommand updateCmd = new SqlCommand(updatacount, myconnecttion);
updateCmd.ExecuteNonQuery();
GridView1.DataBind();
我编辑了一个 check 按钮, 但是 点了 gridview上的check按钮 无法获得当前行
gridview1.selectrow总是null 我的表没设置主键
目的是点了按钮然后就实现某列的自动更新操作
有什么办法么,[em21]
SqlConnection myconnecttion = new SqlConnection(sqlconn);
myconnecttion.Open();
string value1 = GridView1.SelectedRow.Cells[0].ToString();
string updatacount = string.Format("UPDATE PZ SET PZ_check='1'where pz_num='{0}'",value1);
SqlCommand updateCmd = new SqlCommand(updatacount, myconnecttion);
updateCmd.ExecuteNonQuery();
GridView1.DataBind();
我编辑了一个 check 按钮, 但是 点了 gridview上的check按钮 无法获得当前行
gridview1.selectrow总是null 我的表没设置主键
目的是点了按钮然后就实现某列的自动更新操作
有什么办法么,[em21]