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

asp.net, asprepeater, c#, repeater

Solution

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>

Problem

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 ```

Original source