Classic ASP : Put Objects in ArrayList

UnsetsSarse

New Member
I want to add some object of my own in an ArrayList. For example,\[code\]Class MyObjectPublic Sub tell Response.Write("Hello")End SubEnd ClassSet mo = New MyObjectSet al = CreateObject( "System.Collections.ArrayList" )al.Add mo\[/code\]When I do such a thing I get the following error\[quote\] Object doesn't support this property or method: 'al.Add'\[/quote\]Is there some tricks I can use to avoid that ? Some othe List classes or Dynamic Array classes ?
 
Back
Top