Bind 5 items in each row of repeater

asp.net, c#, repeater, sql

Solution

Yes. It is possible:

<asp:Repeater ID="rptItems" runat="server">
           <ItemTemplate>
               <asp:Literal runat="server" Text='<%# Eval("Value") %>'></asp:Literal>
               <div style="clear: both" runat="server" Visible="<%# (Container.ItemIndex+1) % 5 == 0 %>"></div>
           </ItemTemplate>
       </asp:Repeater>

It produces following results for the sequence of numbers:

1 2 3 4 5

6 7 8 9 10

11 12 13 14 15

16 17 18 19 20

Problem

I have a set of items coming from the database. Their number may vary. I have bound them in a repeater. Now my following example will explain what I want: I have 11 items coming from database, I want them to be grouped in terms of 5 items per row. - 1st row: 5 items. - 2nd row: 5 items. - 3rd row: 1 item. Currently, I am just binding them in a repeater. How do I do this?

Original source