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:
Modifying Nick's suggestion I was able to use to make a 5 horizontal x n vertical Image Grid. Thanks Nick!
<%# (Container.ItemIndex != 0 && Container.ItemIndex % 5 == 0) ? @" " : string.Empty %>
" />
<%# DataBinder.Eval(Container.DataItem, "COLOR_NAME") %>
And here's ColorThumbnailImage
protected string ColorThumbnailImage(string fileName)
{
return Request.ApplicationPath + MySports.System.Configuration.ColorSquareImageLocation + fileName;
}