这可能是一个愚蠢的问题,但我正在编写一个快速的测试页面,并意识到我不知道如何绑定一个数组或ArrayList的字符串,例如到一个ASP.NET中继器.
我试了一下
<asp:Repeater ID="rptImages" runat="server"> <HeaderTemplate> <h3>Items</h3> </HeaderTemplate> <ItemTemplate> <p style="background-color:Black;color:White"><%#Eval(Container.DataItem.ToString())%></p> </ItemTemplate> <FooterTemplate> <h4>End of Items</h4> </FooterTemplate> </asp:Repeater>
我是完全愚蠢的吗?我只是真的把它用于具有属性的对象的集合.
解决方法
hoho …
<%# Container.DataItem %>