Re: (Struts2) howto access the user.fname on the jsp page (user's object in http session)

2008-09-17 Thread Dave Newton
\--- On Wed, 9/17/08, mctdeveloper wrote: Click the following link http://intricatetips.blogspot.com Or read the documentation: http://struts.apache.org/2.x/docs/how-do-we-get-access-to-the-session.html Dave - To

Re: (Struts2) howto access the user.fname on the jsp page (user's object in http session)

2008-09-16 Thread mctdeveloper
Click the following link http://intricatetips.blogspot.com Regards -- View this message in context: http://www.nabble.com/%28Struts2%29-howto-access-the-user.fname-on-the-jsp-page-%28user%27s-object-in-http-session%29-tp14803679p19525044.html Sent from the Struts - User mailing list archive

(Struts2) howto access the user.fname on the jsp page (user's object in http session)

2008-01-14 Thread xianwinwin
Hi there, using struts2: I have just place the user's information on a session: session.setAttribute(Properties.USER_HANDLE, secUser); I wonder how to access on a jsp page the info; I tried, unsuccessfully, the following combinations: s:text name=USER_SESSSION_HANDLEs:bean

Re: (Struts2) howto access the user.fname on the jsp page (user's object in http session)

2008-01-14 Thread xianwinwin
THANK YOU ROBI Roberto Nunnari wrote: Try this: s:property value=%{#session.USER_SESSSION_HANDLE.fname}/ -- Robi xianwinwin wrote: Hi there, using struts2: I have just place the user's information on a session: session.setAttribute(Properties.USER_HANDLE, secUser);

Re: (Struts2) howto access the user.fname on the jsp page (user's object in http session)

2008-01-14 Thread Roberto Nunnari
Try this: s:property value=%{#session.USER_SESSSION_HANDLE.fname}/ -- Robi xianwinwin wrote: Hi there, using struts2: I have just place the user's information on a session: session.setAttribute(Properties.USER_HANDLE, secUser); I wonder how to access on a jsp page the info; I tried,