当前位置: 代码迷 >> ASP >> DataGrid单击事件,该如何处理
  详细解决方案

DataGrid单击事件,该如何处理

热度:338   发布时间:2012-03-01 10:25:46.0
DataGrid单击事件
在C#中如何单击datagrid中的一行   来   取出   该行指定的   列的   值   ,也就是dataGrid单击事件取值问题   。  


------解决方案--------------------
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
string id = this.GridView1.DataKeys[e.RowIndex].Value.ToString
}
  相关解决方案