hey ho !
I have a
Struts action (showTable.do) which displays a table.
I'd like to include this in several
jsp pages.
Using the include action
<jsp:include page="/showTable.do?reg=1&by=reg" />
causes the following exception:
java.lang.IllegalStateException: Cannot forward after response has been committed
My workaround is the following:
<bean:include id="table" page="/showTable.do?reg=1&by=reg" />
<bean:write name="table" filter="false" />
and it works (hence the name, *work*around, hehe)
Is this the "real" way to do it ? I'm just not happy with my solution because it looks "rong"
thank you girlz'n'guyz
Dennis