你在GridView的属性中有个datakey看见没?在那里面填上你想获得值的属性,一般是主键,按钮点击的方法中写GridView1.SelectedDataKey,这个就是你想要的值,根据这个值读出其他想要的值
C#中可以在dataGridView1_CellContentClick事件中完成!
先申明变量(若用字符串表示)
string str1;
string str2;
string str3;
str1=dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
str2=dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString();
str3=dataGridView1.Rows[e.RowIndex].Cells[3].Value.ToString();
这样就可以的(可供参考)
我是用asp.net的不知道 跟VB.NET是否一样,你可以试一下
首先 把你想得到值的那3个列转换为模板列,然后在 SelectedIndexChanging()
事件里面写
比如 字段 aaa 在 gridview 为第2列,则
string aaa = ((Label)this.GridView.Rows[e.NewSelectedIndex].Cells[1].FindControl("label1")).Text;
点击选择按钮 事件为 SelectedIndexChanging() ,不知道跟VB.net是否一样
//编辑行
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
this.GridView1.EditIndex = e.NewEditIndex;
bind();
}
编辑行就可以实现取值功能。
如果是主键的话,且只有一个主键,且在gridview的datakeys中存在这个主键的话可以这样写
gridview.datakeys[gridview.selectedindex].values["主键"].tostring()
获取