首页 > 编程 > .NET > 正文

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

2024-07-10 12:43:17
字体:
来源:转载
供稿:网友
在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 也可以实现
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表