在RowCommand事件中获取索引值

1.利用e.CommandSource
复制代码 代码如下:
protected void lpg_RowCommand(object sender, GridViewCommandEventArgs e)

{

if (e.CommandName == "ItemCollect")
{
GridViewRow gvr = (GridViewRow)(((LinkButton)(e.CommandSource)).NamingContainer);
LinkButton lk = lpgKnowledgeExchange.Rows[gvr.RowIndex].FindControl("lbtnCollect") as LinkButton;

}

}

2.如果是模板列中的button直接click事件

利用sender 取其parent 也可以实现
标签:
RowCommand,事件,索引值

免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com

评论“在RowCommand事件中获取索引值示例代码”

暂无“在RowCommand事件中获取索引值示例代码”评论...