I have a .dll with a function within it that gets information and puts it into an array. If I access this function from VB it works great if I try and do the same in .asp it fails giving "Error Type: Provider (0x80004005) Unspecified error" Here is the code from the VB part that works:
Dim thetest As New ActiveDirectorySearch.Search
Dim a() As String
a() = thetest.ByInfo("Smith"
Here is the section of .asp code that does not work.
dim b(1000)
set a = server.CreateObject("ActiveDirectorySearch.Search"
b(0) = "hello"
b() = a.ByInfo("smith"
Is this just a limit of .asp and if so How can I get mutiple values from a function into .asp?
Chad.
Dim thetest As New ActiveDirectorySearch.Search
Dim a() As String
a() = thetest.ByInfo("Smith"
Here is the section of .asp code that does not work.
dim b(1000)
set a = server.CreateObject("ActiveDirectorySearch.Search"
b(0) = "hello"
b() = a.ByInfo("smith"
Is this just a limit of .asp and if so How can I get mutiple values from a function into .asp?
Chad.