
Passing arrays from VB DLL to ASP
I'm writing a VB component which will be used from within ASP.
In this component, I build up an array of two dimensions.
Now, I want to export this data to my ASP file.
How can I do that ?
in asp :
set vse = server.createobject("vse.dbpower")
sites = vse.getSites
The method getSites builds the array.
The array should be returned in asp to the variable 'sites'
Any help is welcome (of course, what else)
dave