Could someone please help me find out whats wrong with this piece of code? Everything works fine, except this line, which is not being written:
Response.Write "<b>Payment:</b> " & TheArray(10,x
The complete code:
<%
' start an HTML table to contain the results.
Response.write "<table border=1 width=500 cellpadding=3>"
' start the loop
For x = 0 to UBound(TheArray,2)
'format & write out the results
Response.write "<TR><TD>"
Response.Write "<b>App ID:</b> " & TheArray(0,x) & "<br>"
Response.Write "<b>Name:</b> " & TheArray(1,x) & "<br>"
Response.Write "<b>Adress:</b> " & TheArray(2,x) & "<br>"
Response.Write "<b>Zip:</b> " & TheArray(3,x) & "<br>"
Response.Write "<b>City:</b> " & TheArray(4,x) & "<br>"
Response.Write "<b>Birthday:</b> " & TheArray(5,x) & "<br>"
Response.Write "<b>Email:</b> " & TheArray(6,x) & "<br>"
Response.Write "<b>Team:</b> " & TheArray(7,x) & "<br>"
Response.Write "<b>Phone:</b> " & TheArray(8,x) & "<br>"
Response.Write "<b>Remarks:</b> " & TheArray(9,x) & "<br>"
Response.Write "<b>Payment:</b> " & TheArray(10,x)
Response.Write "</TD></TR>"
' move to the next position
Next
' close the html table
Response.write "</TABLE>"
%>
Any help much appreciated!
Regards,
OMG
Edited by oneminuteguy