| Author |
Maintain Data Across Errors
|
Dave Wingate
Ranch Hand
Joined: Mar 26, 2002
Posts: 262
|
|
I was wondering if anyone could suggest a good strategy for maintaining user entered data across, say, validation errors. My goal is that when a user submits a form to a servlet and something goes wrong, I would like to redisplay the page that the user submitted the form from. I can accomplish this through response.sendRedirect(), but the user's data is gone. It appears that I have a new request object when I use sendRedirect(). Is there a good way to maintain the user's submitted data across multiple invocations of the same JSP?
|
Fun programming etcetera!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56152
|
|
|
Rather than a redirect, perform a dispatcher forward and the submitted parameter values will be available when re-building the page.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Maintain Data Across Errors
|
|
|