gridview如何通过按钮取得当前行的值
我现在的gridview里有3行3列的数据,每行前面有个选择按钮,我想点击这个按钮后,取得当前行的3个值,代码要怎么写,谢谢。刚才那位高手回答的dataGridView1...
我现在的gridview里有3行3列的数据,每行前面有个选择按钮,我想点击这个按钮后,取得当前行的3个值,代码要怎么写,谢谢。刚才那位高手回答的dataGridView1.SelectedRows[0].Cells[0].Value,我试了,不行。还有就是应该在哪个事件里面写取值的代码?我用的是VB.NET
点击选择按钮触发的是哪个事件??? 展开
点击选择按钮触发的是哪个事件??? 展开
5个回答
展开全部
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();
这样就可以的(可供参考)
先申明变量(若用字符串表示)
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是否一样
首先 把你想得到值的那3个列转换为模板列,然后在 SelectedIndexChanging()
事件里面写
比如 字段 aaa 在 gridview 为第2列,则
string aaa = ((Label)this.GridView.Rows[e.NewSelectedIndex].Cells[1].FindControl("label1")).Text;
点击选择按钮 事件为 SelectedIndexChanging() ,不知道跟VB.net是否一样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-10-04 · 知道合伙人互联网行家
关注
展开全部
//编辑行
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
this.GridView1.EditIndex = e.NewEditIndex;
bind();
}
编辑行就可以实现取值功能。
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
this.GridView1.EditIndex = e.NewEditIndex;
bind();
}
编辑行就可以实现取值功能。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果是主键的话,且只有一个主键,且在gridview的datakeys中存在这个主键的话可以这样写
gridview.datakeys[gridview.selectedindex].values["主键"].tostring()
获取
gridview.datakeys[gridview.selectedindex].values["主键"].tostring()
获取
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询