View Single Post
  #3 (permalink)  
Old 08-06-03, 03:28 PM
BuildHome BuildHome is offline
Newbie Coder
 
Join Date: Aug 2003
Location: Israel
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
You also need to add +1 to variable I, like that:

Code:
<%
i=1
while not tabla.EOF
i = i+1
%>
...
So you will get:
1
2
3
4
.....

Otherwise your variable will be always 1...
Reply With Quote