Wednesday, December 29, 2010

Displaying the serial number in the Gridview

Hi Guys,

To add a serial number to the GridView,here is quick solution.

<asp:templatefield>
    <itemtemplate>
        <%# Container.DataItemIndex + 1 %>
    </itemtemplate>
</asp:templatefield>

Regards
Prabhakar

No comments:

Post a Comment