c# example - generic List<> OrderBy Alphabetical Order
generic-List-OrderBy-Alphabetical-Order.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
List<string> colors = new List<string> { "red", "indianred", "crimson", "pink" };
Label1.Text = "Colors: ";
foreach (string s in colors)
{
Label1.Text += s + " | ";
}
List<string> sortedcolors = colors.OrderBy(x => x).ToList();
Label1.Text += "<br />Colors Sorted : ";
foreach (string s in sortedcolors)
{
Label1.Text += s + " | ";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - generic List<> OrderBy Alphabetical Order</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - generic List<>
<br />OrderBy Alphabetical Order
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="Generic List<> OrderBy"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>