小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

GridView 自動(dòng)增加序號(hào)

 悟靜 2013-02-25

GridView 自動(dòng)增加序號(hào)  

2009-02-10 11:31:37|  分類(lèi): ASP.NET|字號(hào) 訂閱

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

第二種方式分頁(yè)時(shí)進(jìn)行了計(jì)算,這樣會(huì)累計(jì)向下加. 
<asp:TemplateField HeaderText="序號(hào)" 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="序號(hào)" ></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è)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類(lèi)似文章 更多