how to find the index value in repeater inc# code example
Example: asp.net repeater get item index
<asp:repeater id="rptRepeater" runat="server">
<itemtemplate>
Item <%# Container.ItemIndex %>
</itemtemplate>
</asp:repeater>
<asp:repeater id="rptRepeater" runat="server">
<itemtemplate>
Item <%# Container.ItemIndex %>
</itemtemplate>
</asp:repeater>