I am trying to pass an array of strings from my ASP page to my VB component. I get a Type mismatch error. The syntax seems to be right. Is this a bug or am I doing something wrong with my syntax.
I am trying to pass my array by reference. [sig][/sig]
Just a shot in the dark here... Variables in ASP or VBScript are of type Varient so you would need to declare it as such in the VB componet to pass it over correctly.
In your ASP code you probably have the variable set up like this.
Dim Variablename
Declare it exactly the same in your VB componet and it should be fine.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.