Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee Flying bat in a marquee

Wednesday, June 3, 2009

How To Display Row Numbers In A GridView Control [ASP.NET]

While developing web sites using ASP.NET, developers often requires to display row number in GridView controls. Here is a simple template field code to display sequence number start from 1. Insert this code as one of the fields in our GridView code.



<%# Container.DataItemIndex + 1 %>




Incase if you wish to start the sequence number from any number other than 1, replace Container.DataItemIndex + 1 with Container.DataItemIndex + n. For example Container.DataItemIndex + 5 substitution in the above code starts generating sequence number from 5 onwards.

No comments:

Post a Comment