Anyone have any clue on how to show 4 items going horizontal with a repeater? A repeater shows items going down by default. Here is my test repeater code so far:
<%# (Container.ItemIndex + 4) % 4 == 0 ? "" : string.Empty %> ... cell contents omitted ... <%# (Container.ItemIndex + 4) % 4 == 3 ? "" : string.Empty %>
Long live the humble repeater!