sortarraylist.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 16 行

ASPX
16
字号
<%
Dim colShoppingList As ArrayList
Dim strItem As String

colShoppingList = New ArrayList
colShoppingList.Add( "eggs" )
colShoppingList.Add( "milk" )
colShoppingList.Add( "beer" )

colShoppingList.Sort

For Each strItem in colShoppingList
  Response.Write( "<li>" & strItem )
Next
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?