Hi, try this logic
Use session variable say session("Range")
initialise session("Range") to 0
in the graphic botton onclick event try this.
Increase the session variables by 1 and call this fuction having the code like the following
Code:
<%
Dim x
For x = session("Range") to Session("Range")
%>
<tr>
<td>...</td>...
etc...
</tr>
<%
Next
%>
Madhivanan