Quantcast
Channel: Clive Ciappara - Developer for Apps & Websites » Quickie
Viewing all articles
Browse latest Browse all 13

Add AutoNumber to GridView showing the RowNumber | Quickie

$
0
0
The code below will add a column showing an incremental number near each row, which ultimately is the row number
<asp:TemplateField>
  <ItemTemplate>
    <%# Container.DataItemIndex + 1 %>
  </ItemTemplate>
</asp:TemplateField>
Hope this helped ;)

Viewing all articles
Browse latest Browse all 13

Trending Articles