ASP.NET Repeater bind List <string>


102

Associo a List<string>a un controllo Repeater. Ora voglio usare la Evalfunzione per visualizzare i contenuti in ItemTemplatelike

<%# Eval("NAME") %>.  

Ma non sono sicuro di cosa dovrei usare al posto di NAME.

Risposte:


212

Basta usare <%# Container.DataItem.ToString() %>

Se sei preoccupato per i valori nulli, potresti voler eseguire il refactoring su questo (.NET 6+)

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

Nota se stai usando meno di .NET 6 non puoi usare l' operatore condizionale null Container.DataItem? .ToString ()


25

Impostare ItemType su System.string

<asp:Repeater ItemType="System.string" runat="server">
    <ItemTemplate>
        <%# Item %>
    </ItemTemplate>
</asp:Repeater>

6
Si noti che la proprietà ItemType è stata introdotta in .NET Framework 4.5.
Jonathan van de Veen

10
rptSample.DataSource = from c in lstSample select new { NAME = c };

nel ripetitore che metti

<%# Eval("NAME") %>

2
Alcuni esempi utilizzano <% # DataBinder.Eval (Container.DataItem, "NAME")%> invece di utilizzare semplicemente Eval. Qual è la differenza?
Matthew Lock

9

Questo dovrebbe funzionare bene:

<ItemTemplate>
   <%=this.GetDataItem().ToString() %>
</ItemTemplate>

3

Un esempio più completo basato sul LINQ fornito da @RobertoBr:

Nel codice dietro:

List<string> notes = new List<string>();
notes.Add("Value1")
notes.Add("Value2")

repeaterControl1.DataSource = from c in notes select new {NAME = c};
repeaterControl1.DataBind();

Alla pagina:

   <asp:Repeater ID="repeaterControl1" runat="server" >
    <ItemTemplate>
        <li><%# Eval("NAME")  %></li>
    </ItemTemplate>
    </asp:Repeater>

3

devi usare la sintassi databind qui o non funzionerà.

<%# this.GetDataItem().ToString() %>

0

Modello oggetto interno

     <ItemTemplate>
 <asp:Label ID="lblName"  runat="server" Text='<%# Eval("YourEntityName").ToString() ==""? "NA" : Eval("YourEntityName").ToString()%>'></asp:Label>
    <ItemTemplate>

o Aggiungi semplicemente all'interno del modello dell'articolo

<%# Eval("YourEntityName").ToString() ==""? "NA" : Eval("YourEntityName").ToString()%>
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.