zoukankan      html  css  js  c++  java
  • GridView 加排序序号(正序,倒序)

     

    (正序)

    方法一(不带分页):

    <asp:TemplateField HeaderText="序号">
            <ItemTemplate>
    <%#(Container as GridViewRow).RowIndex + 1%>
           </ItemTemplate>
    </asp:TemplateField>

    方法二(带分页):
    <asp:TemplateField HeaderText="序号">
           <ItemTemplate>
                <%# this.GridView1.PageIndex * this.GridView1.PageSize + Container.DataItemIndex + 1%>
           </ItemTemplate>
    </asp:TemplateField>

    (倒序)

    方法一(不带分页):

    <asp:TemplateField HeaderStyle-Width="30px" HeaderText="序号" ItemStyle-HorizontalAlign="center">
         <ItemTemplate>
             <asp:Label ID="Label1" runat="server" Text='<%#((Container as GridViewRow).DataItem as System.Data.DataRowView).Row.Table.Rows.Count - (Container as GridViewRow).RowIndex%>'></asp:Label>
         </ItemTemplate>
    </asp:TemplateField>

    方法二(带分页):

    <asp:TemplateField HeaderStyle-Width="30px" HeaderText="序号" ItemStyle-HorizontalAlign="center">
         <ItemTemplate>
             <asp:Label ID="Label1" runat="server" Text='<%#((Container as GridViewRow).DataItem as System.Data.DataRowView).Row.Table.Rows.Count - (Container as GridViewRow).RowIndex - (this.gviewList.PageIndex) * this.gviewList.PageSize%>'></asp:Label>
         </ItemTemplate>
    </asp:TemplateField>

  • 相关阅读:
    (一)ngxin默认虚拟主机
    centos7 搭建LNMP
    centos7 搭建安装zabbix3.0邮件告警实例(二)
    Java BitSet(位集)
    OLTP与OLAP的区别
    Cassandra-LSM树
    LSM树
    Docker
    RESTful API
    kubernetes介绍
  • 原文地址:https://www.cnblogs.com/kingboy2008/p/2312735.html
Copyright © 2011-2022 走看看