Classic asp:
sub a
aryaa(0,0)=1
aryaa(0,1)=2
end
how to call this array in script function, and how to make this vbscript array to javascript array.
Please help me out from this, since 3 days i m searching for this.
Thanks.
Classic asp:
sub a
aryaa(0,0)=1
aryaa(0,1)=2
end
how to call this array in script function, and how to make this vbscript array to javascript array.
Please help me out from this, since 3 days i m searching for this.
Thanks.
In Javascript you don't have a native Matrix object type. But you can use either Object or Array such as:
I hope you find this useful. Check MDN documentation anyway.
Suppose MY VBScript array is aryATTPlans than the below code describe ( VBScript array to Javascript array)
The following function will convert a multi-dimensional VB safe-array into a multi-dimensional JavaScript array.