Re: How to keep a parameter from page to page
Posted By:
benna_9
Posted On:
Monday, April 2, 2001 08:33 AM
Keep the customer number in the session.
Do something like:
session.putAttribute('customerID',request.getParameter('customerID');
then when you need to get id just call
session.getAttribute('customerID');
Hope it helps