用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > Net教程

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

时间:2015-01-29  来源:互联网  作者:佚名
复制代码 代码如下:
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;
来顶一下
返回首页
返回首页
推荐资讯
一个伴随ASP.NET从1.0到4.0的OutputCache Bug介绍 一个伴随ASP.NET从1.0到4.0的Outpu我们先来一睹这个Bug的风采! 在一个.aspx文件中增加OutputC
ASP.net的验证控件浅析 ASP.net的验证控件浅析①、数据格式验证控件(RegularExpressionValidator) 复制代
相关文章
栏目更新
栏目热门