使用方法如下
程序代碼
<%
dim arr : set arr=new ArrayList
arr
Response
for i=
Response
next
set arr=nothing
%>
Class ArrayList
Private m_array()
Private m_count
Private Sub Class_Initialize()
Redim m_array(
m_count=
End Sub
Private Sub Class_Terminate()
Redim m_array(
m_count=
End Sub
Public Property Get Count()
Count=m_count
End Property
Public Property Get Item(index)
Item=m_array(index)
End Property
Public Function Add(arrItem)
Redim Preserve m_array(m_count)
m_array(m_count)=arrItem
m_count=m_count+
End Function
End Class
%>
From:http://tw.wingwit.com/Article/program/net/201311/14323.html