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

(编辑:jimmy 日期: 2024/10/6 浏览:2)

复制代码 代码如下:
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;
一句话新闻
Windows上运行安卓你用过了吗
在去年的5月23日,借助Intel Bridge Technology以及Intel Celadon两项技术的驱动,Intel为PC用户带来了Android On Windows(AOW)平台,并携手国内软件公司腾讯共同推出了腾讯应用宝电脑版,将Windows与安卓两大生态进行了融合,PC的使用体验随即被带入到了一个全新的阶段。