I have an arraylists of employee ids and employee names in a form bean.In the action class i have kept formbean in request.
In JSP, iam displaying the employee names which are hyperlinks.When i click on any link the corresponding id should be passed as a parameter to the next action/jsp/whatever it may be.
Instead of two arraylists ,if i take a HashMap - with key as Employeeid and value as Employee Name, how can i display the employee names and pass the employee id as parameter?