> 2. What I liked about having an action for rendering the controls it's that I > can reuse them across different JSP pages. What other alternatives do you > suggest me that can achieve the same level of modularity?
Try <jsp:include> or <s:include>. You can create a common jsp, and include it in different pages. Actually, in my project, I create: (1)common_head.jsp to render the common html head part: css, js, and so on (2)common_form.jsp to render the common form part: <s:actionerror />, the page loading Indicator, and so on. And include them in all pages This mechanism make your project very easy to maintain. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org