hi
is there anyway passing array variable which is declared in vbscript
to javascript?
i made a sample code and i found that variant type variables which is
declared in vbscript are type 'unknown' in javascript
let me show some example
<script language="vbscript">
Dim arr(1)
arr(0) = "this"
arr(1) = "that"
</script>
<script language="javascript">
alert(typeof(arr));
</script>
then message box with "unknown" will be poped up
i tested this code with other type but all but variant type are just
fine.
is there anyway to solve this problem?
ps.this problem occured when i try to passing parameter in activex's
event to some event handling script code. any idea will be appreciated
have a nice day :)