I've created a method that returns 3 records in an array. This is being called in an asp page. I created a variable called PRODUCTINFO that is going to be taking those 3 records from the method and allow me to use it later on in the page. Below is the code that im using to create the object and then trying to assign the data to productinfo.
Set oAucEng = Server.CreateObject("Data.AuctionEngDB")'
PRODUCTINFO = oAucEng.GetProductInfo(gfv.Item("AUCTIONID"))
Right now PRODUCTINFO isn't declared as an array because I get a type mismatch error. I'm wondering what I need to do to populate an array with the results from the method? I want to be able to access that data like response.write PRODUCTINFO(0). Any help would be greatly appreciated