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>