I get "Error Type: Microsoft VBScript compilation (0x800A03EE) Expected ')'" for
dim pArray()
call testing("1","2","")
public function testing(pArray(0),pArray(1),pArray(2))
for each item in pArray
if pArray(item)="" then pArray(item)="0"
response.write(pArray(item))
next item
end function
Is it possible to assign values to an array being used as sub/function arguments?
dim pArray()
call testing("1","2","")
public function testing(pArray(0),pArray(1),pArray(2))
for each item in pArray
if pArray(item)="" then pArray(item)="0"
response.write(pArray(item))
next item
end function
Is it possible to assign values to an array being used as sub/function arguments?