zoukankan      html  css  js  c++  java
  • gridview获取选中行索引及当前行数据

    gridview获取选中行索引及当前行数据

    一.非直接绑定数据:

    <!--前台传值-->
    <asp:TemplateField HeaderText="操作"> <ItemTemplate> <asp:LinkButton ID="lbtnDelete" runat="server" CommandName="CustomDelete" CommandArgument="<%# Container.DataItemIndex) %>>" OnClientClick="javascript:return confirm('真的要删除吗?');">删除</asp:LinkButton> <asp:LinkButton ID="lbtnEdit" runat="server" CommandName="CustomUpdate" CommandArgument="<%# Container.DataItemIndex %>">编辑</asp:LinkButton> </ItemTemplate> </asp:TemplateField>
    //后台获取
     int index = Convert.ToInt32(e.CommandArgument);
                GridViewRow row = GridView1.Rows[index];

    二.绑定数据:

    <!--前台传值-->
    <asp:TemplateField> <ItemTemplate> <asp:LinkButton ID="LinkButton1" runat="server" CommandArgument='<%# Eval("Id") %>' CommandName="tt">删除</asp:LinkButton> </ItemTemplate> </asp:TemplateField>
    //后台获取Id值
    string id = e.CommandArgument.ToString();
  • 相关阅读:
    梦断代码阅读笔记02
    第三周
    第二周
    《大道至简》阅读笔记
    暑假第一周
    hdu-1237简单计算器(栈的运用)
    玩骰子(概率,暴力)
    hdu-5568SUM (dp)
    codeforce-600C. Make Palindrome(贪心)
    codeforce-601A. The Two Routes(最短路)
  • 原文地址:https://www.cnblogs.com/zlp520/p/10770727.html
Copyright © 2011-2022 走看看