jQuery and ASP.NET

January 20, 2010

Add a Row Number to the GridView




Here’s a simple way to add a Row Number to the GridView. Just add the following tags to your <columns> section of your GridView

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

and you will get the following output

image



'Like' us on our FaceBook page if you find this blog useful. Thanks!


Did you like this post?
kick it on DotNetKicks.com Save on Delicious
subscribe via rss subscribe via e-mail
print this post follow me on twitter


About The Author

Suprotim Agarwal, ASP.NET Architecture MVP works as an Architect Consultant and provides consultancy on how to design and develop Web applications.

Suprotim is also the founder and primary contributor to DevCurry, DotNetCurry and SQLServerCurry. He has also written an EBook 51 Recipes using jQuery with ASP.NET Controls.

Follow him on twitter @suprotimagarwal

comments

3 Responses to "Add a Row Number to the GridView"
  1. Anonymous said...
    January 25, 2010 12:30 PM

    Thanx buddy...simple and best

  2. Danish Backer said...
    October 23, 2010 4:07 PM

    Thank you...! :D

  3. Karuna said...
    May 16, 2011 4:45 AM

    Thank you it works fine

 

Copyright © 2009-2011 All Rights Reserved for DevCurry.com by Suprotim Agarwal | Terms and Conditions