Why do i get an error for the loop ?
this piece of a script is in a asp file for reading my csv .
it needs to read all my rows in the csv ,, like now it gives me expected loop error
if i put it under arrRows = split it gives me only the last entry of the csv..
please need help
thanks in advance !
Do Until oInStream.AtEndOfStream
sRows = oInStream.readLine
arrRows = Split(sRows,",")
%>
<td><div align="center"><%=arrRows(0)%><br></div></td>
<td><div align="center"><%=arrRows(1)%></td>
<td><div align="center"><%=arrRows(2)%></td>
<td><div align="center"><%=arrRows(3)%></div></td>
<td><div align="center"><%=arrRows(4)%></div></td>
<td><div align="center"><%=arrRows(5)%></div></td>
<%
Loop
%>