datarepeater columns and rows

J

John Devlon

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
 
G

Guest

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>
....
 
J

John Devlon

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

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>
....
 
G

Guest

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







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
.....

?
 

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,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top