Asp.net教程

在RowCommand事件中获取索引值示例代码

本文主要是介绍在RowCommand事件中获取索引值示例代码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在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事件中获取索引值示例代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
您可能喜欢