GridView自动增加序号(三种实现方式)_.Net教程

编辑Tag赚U币

推荐:关于WPF使用MultiConverter控制Button状态的详细介绍
本篇文章小编将为大家介绍,关于WPF使用MultiConverter控制Button状态的详细介绍。需要的朋友参考下

第一种方式,直接在Aspx页面GridView模板列中.这种的缺点是到第二页分页时又重新开始了.
复制代码 代码如下:www.mb5u.com

<asp:TemplateField HeaderText="序号" InsertVisible="False">
<ItemTemplate>
<%#Container.DataItemIndex+1%>
</ItemTemplate>
</asp:TemplateField>

第二种方式分页时进行了计算,这样会累计向下加.
复制代码 代码如下:www.mb5u.com

<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代码中,和第二种相似.
复制代码 代码如下:www.mb5u.com

<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();
}
}

分享:基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题
本篇文章小编将为大家介绍,基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题。需要的朋友参考下

来源:模板无忧//所属分类:.Net教程/更新时间:2013-04-22
相关.Net教程