Hi, I am Norman.
I am using Tomcat 4.0, Struts 1.0.2. Is there a way to add a URL parameter before doing an action forward from a servlet. Currently I am doing this actionForward = mapping.findForward( "retrieveUser" ); I need to do something like this. request.setParameter( "UserID", userID ); actionForward = mapping.findForward( "retrieveUser" ); Any help in this regard would be appreciated. Thanks Ryan Norman

