forwarding to unrelated pages

2003-01-09 Thread John . E . Gregg
Hi all, I'm pretty new to Struts but I've been following it for a long time. Now that I'm starting to use it, I'm trying to figure out the best way to make objects available to a jsp that aren't involved in the processing of the previous action. I know about HttpServletResponse.addAttribute(),

Re: forwarding to unrelated pages

2003-01-09 Thread Mark Lowe
The option to instantate a bean in the jsp is always available using 'useBean' .. You can then use the struts tags or jstl etc.. You don't need and action.. The other option is to put everything in the session and then its available to the presentation layer when required.. For example if

RE: forwarding to unrelated pages

2003-01-09 Thread pqin
PROTECTED] Subject: forwarding to unrelated pages Hi all, I'm pretty new to Struts but I've been following it for a long time. Now that I'm starting to use it, I'm trying to figure out the best way to make objects available to a jsp that aren't involved in the processing of the previous action. I