junaidp 0 Newbie Poster

Hi
please help me with paging
as i am searching it for last 3 days but no success
I have a table in JSP ,which is getting values from java / database and displaying record via beans
here is my JSP code

<logic:iterate  name="list" id="user" scope="session">   
								            
 <tr><td><beanOld:write   name="user" property="username" /></tr></td>  
		
 <td> <beanOld:write   name="user" property="password"/>     </td>   
								
								</logic:iterate>	
						
	</td>				
      	</tr>        
		


Its Perfectly showing me the Table ,now i just want this table in pagination like first 5 records on first page and next five on other page and so on ...

I Have tried this with Display:table    but  its giving Unhandled exception error 
below is the code for display tag 

<display:table id="data" name="sessionScope.userLoginForm.list" requestURI="/UserLoginAction.do" pagesize="5" > 
   
<display:column property="Username" title="Username" sortable="true"/> 
    
<display:column property="Password" title="Password" sortable="true"/> 
    
		 
</display:table>

IF SOME ONE COULD PLEASE GIVE ME THE CODE TO SHOW MY ABOVE TABLE IN PAGINATION
THANKS ALOT