I have a class called 'Company' that has properties like 'CompanyName', 'CompanyCode' and 'IsActive'. This class is in VBScript. I want to store a collection of Company objects using VBScript in classic ASP. Is this possible, and if yes, then how would I do it?
Collection of objects in classic ASP using VBScript
asp-classiccollectionsvbscript
Best Solution
You can use an array or a dictionary object:
Array
Dictionary