电竞比分网-中国电竞赛事及体育赛事平台

分享

GridView 自動增加序號

 悟靜 2013-02-25

GridView 自動增加序號  

2009-02-10 11:31:37|  分類: ASP.NET|字號 訂閱

第一種方式,直接在Aspx頁面GridView模板列中.這種的缺點(diǎn)是到第二頁分頁時(shí)又重新開始了. 
<asp:TemplateField HeaderText="序號" InsertVisible="False">                       
    <ItemTemplate>               
        <%#Container.DataItemIndex+1%>            
    </ItemTemplate>             
</asp:TemplateField>

第二種方式分頁時(shí)進(jìn)行了計(jì)算,這樣會累計(jì)向下加. 
<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();             
    }         
}


    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多