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:
This might do the job (I'm assuming you may have more than one row of four images):
<%# (Container.ItemIndex != 0 && Container.ItemIndex % 4 == 0) ? @" " : string.Empty %>
<%# (WebMenuItem)Container.DataItem).Name %>
(no IDE so untested :)
If it doesn't help, some answers from this question might.