Ricerca…


Utilizzo di base

Questo esempio crea un semplice ripetitore a 1 colonna che visualizza un elenco di numeri, uno per elemento ripetitore.

markup:

<asp:Repeater ID="Repeater1" runat="server">
    <ItemTemplate>
        <%# Container.DataItem.ToString() %>
    </ItemTemplate>
</Repeater>

Codice dietro:

protected void Page_Load(object sender, EventArgs e)
{
    List<int> numbers = new List<int>{1, 2, 3, 4, 5};
    Repeater1.DataSource = numbers;
    Repeater1.DataBind();
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow