Hii..
Im retreving the data from database using table1.so im taking the values in array.
so using loop im displaying the values in single line .like
one
two
three
four
five
...
...
...
But i want to display the values like..
one two three
four five six
.. .. ..
my code is here..
Thanks
Im retreving the data from database using table1.so im taking the values in array.
so using loop im displaying the values in single line .like
one
two
three
four
five
...
...
...
But i want to display the values like..
one two three
four five six
.. .. ..
my code is here..
Code:
<table> <tr> <td >Numbers</td> </tr><% For cnt=1 To UBound(arrayobjrs, 2)+1 Step 1 %> <tr> <td ><a href="home.asp?page=numb&id=<%=arrayobjrs(0, cnt-1)%>"> <%=arrayobjrs(1, cnt-1)%></a></td> </tr> <% Next %> </table>
Comment