Repeater绑定数组并显示其值
web开发中,尤其是对于数据展示,不得不说Repeater是一个万能的控件,而且使用也很方便。
在ASP.NET中将数组绑定到Repeater中请问如何在Repeater前台页面中显示该数组的值?
string[] str = { "a1", "a2", "a3" };
Repeater.DataSource=str;
Repeater.DataBind();
__________________________________________
<asp:Repeater ID="Repeater" runat="server">
<ItemTemplate>
<%#Container.DataItem%>
</ItemTemplate>
</asp:Repeater>
当看到一些不好的代码时,会发现我还算优秀;当看到优秀的代码时,也才意识到持续学习的重要!--buguge
本文来自博客园,转载请注明原文链接:https://www.cnblogs.com/buguge/p/3407566.html