repeatcolumns ... what about left to right first,then down ???

J

jason

I have this thumbnail page written in asp.net that's using datalist
with a RepeatLayout="Table" to build a table of thumnails .. the code
works, except the images display downward first then back up to to the
top. Instead I'd like the for the images to display from left to right
and then down again (like the we are all use to when reading something
in English). Here's the code - the databind came from a datatable
that was sorted by file name. Any suggestions?

<ASP:DataList id="repeater1" runat="server" RepeatLayout="Table"
Repeatcolumns="6">
<ItemTemplate>
<a href="<%# Container.DataItem(0) %>" target="_New">
<asp:Image
runat="server"
ImageUrl="<%# Container.DataItem(1) %>"
BorderStyle="OutSet"
BorderWidth="2"
Width=120 Height=100
/>
</a>
</ItemTemplate>
</ASP:DataList><p />
 
J

Jos

I have this thumbnail page written in asp.net that's using datalist
with a RepeatLayout="Table" to build a table of thumnails .. the code
works, except the images display downward first then back up to to the
top. Instead I'd like the for the images to display from left to right
and then down again (like the we are all use to when reading something
in English). Here's the code - the databind came from a datatable
that was sorted by file name. Any suggestions?

<ASP:DataList id="repeater1" runat="server" RepeatLayout="Table"
Repeatcolumns="6">
<ItemTemplate>
<a href="<%# Container.DataItem(0) %>" target="_New">
<asp:Image
runat="server"
ImageUrl="<%# Container.DataItem(1) %>"
BorderStyle="OutSet"
BorderWidth="2"
Width=120 Height=100
/>
</a>
</ItemTemplate>
</ASP:DataList><p />

Just set the RepeatDirection property of the datalist to
RepeatDirection.Horizontal.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top