On Oct 8, 12:54*pm, "John Devlon" <johndev...@hotmail.com> wrote:
> Hi Alexy,
>
> If I build a table using 1 row and 3 columns into the datarepeater, will the
> data then repeat in the columns, so if i have 3 items, will each column have
> a different item?
>
> Thanx
>
> John
>
> "Alexey Smirnov" <alexey.smir...@gmail.com> wrote in message
>
> news:c9016b95-0fe9-4792-baa1-(E-Mail Removed)...
> On Oct 6, 11:39 pm, "John Devlon" <johndev...@hotmail.com> wrote:
>
> > Hi,
>
> > Does anyone know how to create a datarepeater which uses columns and rows?
> > I would like to repeat a picture and some buttons in 3 columns en 5 rows,
> > using paging.
> > Can this be done using the default repeat controle ?
>
> > Thank for any input....
>
> > John
>
> You can add a table into it
>
> <asp:Repeater runat="server">
> * <ItemTemplate>
>
> <table>
> <tr><td>...</td><td>...</td><td>...</td><td>...</td></tr>
> ...
No, you would have 3 rows. Do you need a column for each item?
> I would like to repeat a picture and some buttons in 3 columns
Please tell me how you would like to get this:
image1 button1 button2 button3
image2 button1 button2 button3
.....
?
|