手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >asp.net获得数据控件事件索引并获取其中值总结
asp.net获得数据控件事件索引并获取其中值总结
摘要:复制代码代码如下:1、RowCommad//获得索引intindex=((GridViewRow)(((Button)(e.CommandS...

复制代码 代码如下:

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获得数据控件事件索引并获取其中值总结】相关文章:

asp.net获取SQL所有数据库名、所有表名、所有字段名

asp.net下获取远程网页的内容之二(downmoon原创)

asp.net开发微信公众平台之获取用户消息并处理

Asp.Net 文件操作基类(读取,删除,批量拷贝,删除,写入,获取文件夹大小,文件属性,遍历目录)

Asp.net获取服务器指定文件夹目录文件并提供下载的方法

asp.net(c#)中取得文件物理路径

Asp.net 通用万级数据分页代码[修正下载地址]

asp.net用三层实现多条件检索示例

asp.net读取excel中的数据并绑定在gridview

asp.net简化接收参数值的函数

精品推荐
分类导航