Hi,
A Function in
VB.net DLL is returning an Array
Public Function ABC() as Array
End Function
I am accessing this function in Classic ASP page and storing values of Array into variables,
Dim Name
Name = ABC(1)
Dim Phone
Phone = ABC(2)
Problem:
I am getting "Type Mismatch" Error in ASP page while storing the contents of Array into variables. How to solve this?
Do I need change return type of
VB.net function or any mistake in ASP page?