GridView的RowCommand事件中取得行索引

本文介绍如何在ASP.NET中使用GridView控件添加带有CommandName的Button,并在后台通过RowCommand事件获取点击按钮所在行的数据索引及DataKey值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

前台添加一模版列,里面添加一个Button
<asp:TemplateField HeaderText="测试">
                                  <ItemTemplate>
                                      <asp:Button ID="Button1" CommandName="btn" runat="server" Style="position: relative" Text="Button" />
                                  </ItemTemplate>
                              </asp:TemplateField>

后台

protected void gv_Company_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "btn")
        {
            int index = Convert.ToInt32(e.CommandArgument);
            DataKey key = this.gv_Company.DataKeys[index];
            string tt = key.Value.ToString();

            Response.Write(tt);
        }
    }

    //行数据绑定
    protected void gv_Company_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            Button bt = new Button();
            bt = (Button)e.Row.Cells[6].FindControl("Button1");
            bt.CommandArgument = e.Row.RowIndex.ToString();
        }
    }

第二种方式:
int index = ((GridViewRow)(((LinkButton)(e.CommandSource)).Parent.Parent)).RowIndex;

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值