Hi, I've got pagination to work with struts. After a user fills out a form & clicks submit, the Action class parses the query & invokes a stored procedure, which in turn fills the bean. If the user specified 10 items per page, the resultset will stop after 10 iterations. The correct 10 items will be displayed on the following JSP.
My issue is that on the JSP, when I click Next, the users settings does not get passed to the Action class. My question is, how do I keep a users settings persistent across multiple pages? Should I use session scope (currently request scope) or should I use hidden forms? I would appreciate any sample sites using struts that implemented pagination. Thanks, Dean Chen -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

