服务器之家

服务器之家 > 正文

asp.net获得数据控件事件索引并获取其中值总结

时间:2019-09-23 10:35     来源/作者:asp.net教程网

代码如下:


1、RowCommad 
//获得索引 
int index = ((GridViewRow)(((Button)(e.CommandSource)).Parent.Parent)).RowIndex; 

2、RowEditing等 
//获得索引 
int index = e.NewEditIndex; 
//获取当前GridViewRow对象 
GridViewRow editGridViewRow = autoGridView.Rows[girdviewEditIndex]; 

//获取内容方法一 row中有控件Label 
Label girdviewTitleLabel = editGridViewRow.Cells[0].FindControl("titleLabel") as Label; 
string gridViewContent = girdviewTitleLabel.Text; 
//获取内容方法二 row中有无控件Label 
//string gridViewContent = editGridViewRow.Cells[0].Text; 

3、RowDeleting等 
//获得索引 
int index=e.RowIndex ; 
//获取当前GridViewRow对象 
GridViewRow gvr=autoGridView.Rows[index]; 
//取得当前行第二个单元格中的文字 
string str = gvr.Cells[1].Text; 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部