This is the output rendered from manageusers.jsp all the UID WILL HAVE HYPERLINK
--------------------------------------------------------------------------------
public ActionForward execute(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response) {
try{
System.out.println("I am in EditUserAction user id : "+request.getParameter("userId"));
} catch(Exception e) {
System.out.println("I am in EditUserAction Exception : "+e.getMessage());
}
return mapping.findForward(Constants.SUCCESS);
}
}
What I need from you guys ?
***************************
Currently when I click the UID's I am getting the request parameter as null in EditUserAction.
I am sure that I am NOT appending the UID to the hyperlink in manageusers.jsp
because I do not know how to do that (tried couple of approaches but in vain ).
Any thoughts or suggestions on how to do this? Thanks in advance for your time.