Repeat to the right?

T

Tommy

I have a page to create that displays rows with the fields vertically so
that each person's data can be viewed across. ie:

tom bob
2 4
4 32
11 21
53 16

Is there a way to do this with a repeater? I have used repeaters before to
go vertical but this is toally different than what I have seen and done.

If no then can a table be created on the fly and displayed within a web
form? I tried a literal control. I built my html table and then set the text
property to the literal control but it doesn't honor the html embedded in
the text property.

Thanks in advance.
 
G

Guest

Use a repeater, but simply let each ItemTemplate contain a row element:

<ItemTemplate>
<tr>
<td>Tommy</td><td>DataCell1</td><td>DataCell2</td>
</tr>
</ItemTemplate>
 
S

Support CuteSoft

Tommy,

RepeatDirection="Horizontal"

Or

repeater.RepeatDirection = 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

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top