> > If I do the data access part in UserDetailAction, how can I retrieve
> > the UserId parameter that was specified from the link part in
> > UserList.jsp?
> 
> request.getParameter("UserId"); 

or add a form bean to your action, in struts-config.xml, (static form bean or 
DynaActionForm) with an appropriate userId property. Then access it like this:

  ((MyForm)form).getUserId(); // static MyForm

or

  ((DynaActionForm)form.get("userId");

Sam.


STRICTLY PERSONAL AND CONFIDENTIAL
This message may contain confidential and proprietary material for the sole use of the 
intended recipient. Any review or distribution by others is strictly prohibited. If 
you are not the intended recipient please contact the sender and delete all copies.

Ce Message est uniquement destiné aux récipiendaires indiqués et peut contenir des 
informations confidentielles. Si vous n'êtes pas le récipiendaire, vous ne devez pas 
révéler le contenu de ce message ou en prendre copie. Si vous avez reçu ce message par 
erreur, veuillez en informer l'expéditeur, ou La Poste immédiatement, avant de le 
supprimer.

Dit bericht is enkel bestemd voor de aangeduide ontvangers en kan vertrouwelijke 
informatie bevatten. Als u niet de ontvanger bent, dan mag u de inhoud van dit bericht 
niet bekendmaken noch kopiëren. Als u dit bericht per vergissing heeft ontvangen, 
gelieve er de afzender of De Post onmiddellijk van op de hoogte te brengen en het 
bericht vervolgens te verwijderen.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to