事件GridView1_RowUpdating 请教
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
string id = this.GridView1.DataKeys[e.RowIndex].Value.ToString();
// e.NewValues[entry.Key] = Server.HtmlEncode(entry.Value.ToString());
string username = e.NewValues.ToString();
SqlConnection con = DB.createConn();
con.Open();
SqlCommand cmd = new SqlCommand("update login set email='" + username + "'where id='"+id+"'", con);
cmd.ExecuteNonQuery();
GridView1.EditIndex = -1;
band();
}
想问一下如何得到username 这个值啊
我是通过 智能显示 然后编辑列里面 然后把编辑 里面的 修改啊更新取消添加进去的
怎么获得那个值帮忙啊