GridView自动序号

<asp:TemplateField HeaderText="序号">
    <ItemTemplate>
        <asp:Label ID="Label1" runat="server" Text="<%# Container.DataItemIndex + 1%> "></asp:Label>
    </ItemTemplate>
    <ItemStyle Width="30px" />
</asp:TemplateField>

你可能感兴趣的:(GridView)