Hi Imar,
I've been experimenting with your code on pg 493, 494.
I wanted to add another Review field into the repeater.
I wrote this:
Code:
<asp:BulletedList ID="BulletedList1" runat="server" DataSource='<%# Eval("Reviews")%>' DataTextField="Summary" DisplayMode="Text">
</asp:BulletedList>
It displays the summary of reviews fine but in this format:
PUNK
--->Title
--->Title
--->Summary
--->Summary
How can I get it to display like:
PUNK
--->Title
--->Summary
--->Title
--->Summary
?
Regards
TDG