Can you explain on how the data is been handled after using split() method? Because the error that you mentioned is something related to trying to access the subscript that is out of arrays range (say array has a maximum subscript of 3, but you may be trying to accessing 4).
So in your case, it should be like the
"dataline" variable should not be containing any
"|" in it, so on split the
"aryLineData" contains only value in its
ZEROth subscript and you may be trying to access [b]aryLineData(1)[/]b
So you do a response.write dataline before the line that uses SPLIT() method.
Code:
Response.Write dataline
Response.End
aryLineData = split(dataline,"|")
This should shed some/much light on that issue;).
Hope that helps.
Cheers!
_________________________
-Vijay G

Strive for Perfection
