ralphtrent
Programmer
Hello
I have the following code in place:
Do While not getData.eof
For i = 1 To 5
if i = 1 Then response.write ("<tr>"
Response.Write("<td>"&i&" "&getdata("USERNAME"&"</td>"
If i = 5 Then response.write ("</tr>"
Next
getdata.movenext
Loop
What I want to happen is for every fith value. I have got that working, but the whole row is the same value.
Examples -
What I am geting:
bob bob bob bob bob
frank frank frank frank frank
will will will will will
julie julie julie julie julie
jane jane jane jane jane.
What I want is:
bob frank will julie jane
What am I doing wrong?
I have the following code in place:
Do While not getData.eof
For i = 1 To 5
if i = 1 Then response.write ("<tr>"
Response.Write("<td>"&i&" "&getdata("USERNAME"&"</td>"
If i = 5 Then response.write ("</tr>"
Next
getdata.movenext
Loop
What I want to happen is for every fith value. I have got that working, but the whole row is the same value.
Examples -
What I am geting:
bob bob bob bob bob
frank frank frank frank frank
will will will will will
julie julie julie julie julie
jane jane jane jane jane.
What I want is:
bob frank will julie jane
What am I doing wrong?