Hi, I've a problem.
I'm creating my aspx page and i'd to visualize a list.
I don't know how to use the repeater control to visualize my list
I tried with this code, but it's wrong:Dim lista As New ArrayList
lista.Add("first")
lista.Add("second")
lista.Add("third")
Repeater1.DataSource = lista2
Repeater1.DataBind() <asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
</ItemTemplate>
< ...
Go to the complete details ...