What is the easiest way to put an index to a repeater control in .NET?

Barış Velioğlu picture Barış Velioğlu · Apr 4, 2012 · Viewed 17.3k times · Source

I want an ASP:NET WebForms Repeater control to put an index next to each of its output rows automatically. How can I do that?

Example:

   Name
1  John
2  Jack
3  Joe

Answer

Rawling picture Rawling · Apr 4, 2012

Try the following:

<asp:Repeater ID="myRepeater" runat="server">
    <HeaderTemplate>
        <table>
    </HeaderTemplate>
    <ItemTemplate>
        <tr>
            <td><%# Container.ItemIndex %></td>
            <!-- or maybe -->
            <td><%# Container.ItemIndex + 1 %></td>
            <td><%# DataBinder.Eval(Container, "DataItem.Name") %></td>
        </tr>
    </ItemTemplate>
    <FooterTemplate>
        </table>
    </FooterTemplate>
</asp:Repeater>