欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

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

时间:2022-03-12 08:49:50|栏目:.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;

上一篇:C#开发微信门户及应用(1) 微信接口使用

栏    目:.NET代码

下一篇:http图片上传安全性问题 根据ContentType (MIME) 判断其实不准确、不安全

本文标题:asp.net获得数据控件事件索引并获取其中值总结

本文地址:http://www.codeinn.net/misctech/196012.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有