Greatful for your useful info, Cedric.
I believe including is a very common issue, and it's great to know that
there is a taglib that can support struts.
Thanks again.
Cedric Dumoulin wrote:
> I think that you can't include several *.do in a same page. This is
> because a *.do do a forward() to forward to the associated jsp page. But,
> you can't do forward() if you have already committed the response (i.e.
> writing something in the output).
> As a solution, you can modify ActionServlet to perform an 'include'
> rather than a 'forward' when response is committed.
> You can also check Tiles contrib, which now allows to <insert> several
> *.do in a same page. You will write something like <tiles:insert
> page="action.do"/>
>
> Cedric
>