0

ASP.NET初心者です。以前、データソースなしでリピーターにデータバインディングを行う方法を尋ねました。ここ。VB.NET Repeater データソースを使用しない単純なデータ バインディング

ここに誰かが私のために得た解決策があります

Dim repeatTimes((TotalAdInsured)) As Integer

    myRepeater.DataSource = repeatTimes
    myRepeater.DataBind()

ただし、リピーター内の各アイテムのインデックスを取得する方法を知る必要があります。すなわち

<% #index %>
4

1 に答える 1

0
    <asp:Repeater runat="server" ID="rptAwesome">
        <ItemTemplate>
            <%# Container.DataItem %> <%# Container.ItemIndex %><br />
        </ItemTemplate>
    </asp:Repeater>
于 2009-05-31T14:46:36.120 に答える