pagingnation
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
i wants to paging if record posted by employee in more then 10 then otion to view next go to next page first page is work fine but the page number don't work so how can paging it with employee number [code] <td> <%If page>1 Then %> <a href="userprofile1.asp?opt=<%=R("empno") "& <%=page-1%>&" %>">Previous</a> <%end if %> <% If page < Rpage Then %> <a href="userprofile1.asp?opt=<%=R("empno") &<%=page+1%>">Next</a> <% end if %> <%if Rpage>2 then for i=1 to Rpage response.write "<a href=""userprofile1.asp?opt=<%=R("empno") & page="&i&""">"&i&"</a> " next end if %> </td> [/code] Thanks
sanjeev