zoukankan      html  css  js  c++  java
  • GridView 自动增加序号

    第一种方式,直接在Aspx页面GridView模板列中.这种的缺点是到第二页分页时又重新开始了.
    <asp:TemplateField HeaderText="序号" InsertVisible="False">                      
        <ItemTemplate>              
            <%#Container.DataItemIndex+1%>           
        </ItemTemplate>            
    </asp:TemplateField>

    第二种方式分页时进行了计算,这样会累计向下加.
    <asp:TemplateField HeaderText="序号" InsertVisible="False">
               <ItemStyle HorizontalAlign="Center" />
               <HeaderStyle HorizontalAlign="Center"/>
                <ItemTemplate>
                       <asp:Label ID="Label2" runat="server" Text='<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>' />
               </ItemTemplate>
    </asp:TemplateField>

    还有一种方式放在cs代码中,和第二种相似.

    <asp:BoundField HeaderText="序号" ></asp:BoundField>
    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)        
    {            
        if (e.Row.RowIndex != -1)            
        {                
            int indexID = this.GridView1.PageIndex * this.myGridView.PageSize + e.Row.RowIndex + 1;                
            e.Row.Cells[0].Text = indexID.ToString();            
        }        
    }

  • 相关阅读:
    数字加密
    大道至简第四章读后感
    输出类中的对象个数
    大道至简第三章读后感
    02java语法基础问题总结
    从命令行接收多个数字并求和输出
    软件工程个人作业03
    第四周学习进度条
    软件工程概论-课后作业2(单元测试)
    第三周学习进度
  • 原文地址:https://www.cnblogs.com/puke/p/1346418.html
Copyright © 2011-2022 走看看