ASP.NET 绑定A到Z

 string[] alphabetical = new string[26]{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};

        DataList1.DataSource = alphabetical;
        DataList1.DataBind();

 

 

<asp:DataList ID="DataList1" runat="server">
            <ItemTemplate>
               <%#Container.DataItem%>
            </ItemTemplate>
        </asp:DataList>

posted @ 2009-03-22 16:05  alex hu  阅读(223)  评论(1编辑  收藏  举报