PDA

View Full Version : Sending array of objects to ASP


chrscote
06-15-2005, 04:33 PM
I have been using the LoadVars object to send individual data elements to an ASP page to save to an Access database, but now, I have a one-dimensional array that I need to send to an ASP page to save the data in a database. Can ASP handle the objects like they do with a regular array? If so, how do I access the individual properties of the objects in the array in ASP? I would hate to have to separate these objects into individual arrays before sending them to the ASP page!! :(


Chris

Cota
06-15-2005, 05:08 PM
You'll either have to turn the array into a comma delimited string or send then to the ASP file one by one.