GridView Serial

GridView Serial

Here we will add new coloumn to GridView which will show serial number of the row 


   <asp:TemplateField HeaderText="Sr.No.">                   
                    <ItemTemplate>
                       <%# Container.DataItemIndex+1 %>
                    </ItemTemplate>
  </asp:TemplateField>

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Comments