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>

相关文章:

  • 2021-06-16
  • 2021-11-23
  • 2021-08-05
  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-06
  • 2021-09-24
  • 2022-03-06
  • 2022-12-23
  • 2021-12-01
  • 2021-08-31
  • 2021-08-02
相关资源
相似解决方案