Re: struts action servlet interaction with jsp files

2006-12-15 Thread Frank W. Zammetti
Note however that there is no JSTL equivalent for most of the Struts HTML taglib... the Struts HTML tags are Struts-aware, i.e., will automatically pull data from your form beans to populate the fields... JSTL can't do that automatically. Aside from the HTML taglib, Laurie is of course right,

Re: struts action servlet interaction with jsp files

2006-12-15 Thread Laurie Harper
Simply put, the Struts tags pre-date JSTL. The JSTL tags provide equivalent functionality in many areas and more besides. Since they are a standard and more complete solution than the equivalent Struts tags, their use is recommended. The Struts tags have been kept for backwards compatibility a

Re: struts action servlet interaction with jsp files

2006-12-09 Thread Rick Schumeyer
Can I ask, what is the reason for avoiding the Struts tags and using the JSTL tags? (It begs the question, what is the purpose of the struts tags?) Wendy Smoak wrote: On 12/9/06, Fabio Miranda Hamburger <[EMAIL PROTECTED]> wrote: How can I 'send' this array from fooBarStrutsAction.java, and

Re: struts action servlet interaction with jsp files

2006-12-09 Thread Wendy Smoak
On 12/9/06, Fabio Miranda Hamburger <[EMAIL PROTECTED]> wrote: How can I 'send' this array from fooBarStrutsAction.java, and its method: public ActionForward execute(...) TO a jsp file, let's say display.jsp? and by the way, how to access that array within the JSP file. I think I am missing a c