gpt4 book ai didi

asp.net - 从 GridView 中的 ImageButton 单击获取行索引

转载 作者:行者123 更新时间:2023-12-04 13:01:27 25 4
gpt4 key购买 nike

我有一个带有 ImageButtons 的 Gridview 通过模板字段添加到列中。我已将一个函数附加到“OnClick”事件。

进入此函数后,如何获取具有已单击按钮的行的索引。看来我所拥有的只是页面上的鼠标坐标。

最佳答案

您可以使用它而不是遍历行

<asp:ImageButton runat="server" id="ibtn1" ... RowIndex='<%# Container.DisplayIndex %>' 
OnClick="button_click"/>

...

protected void button_click(object sender, EventArgs e){
ImageButton ibtn1 = sender as ImageButton;
int rowIndex = Convert.ToInt32(ibtn1.Attributes["RowIndex"]);

//Use this rowIndex in your code
}

关于asp.net - 从 GridView 中的 ImageButton 单击获取行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/466540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com