HI,
is the following possible ?
I have a JSP named Table.jsp wich looks like the following:
<html>
TEST
<BODY>
<TABLE>
<TR>
<TD><jsp:include
page="showBlackBoardDetails.do?action=Show&pk=12&voName=BBNameVO&selected=10
" flush="true"/></TD>
</TR>
<p>
<TR>
<TD><jsp:include
page="showBlackBoardDetails.do?action=Show&pk=12&voName=BBNameVO&selected=12
" flush="true"/></</TD>
</TR>
</TABLE>
</BODY>
</HTML>
And I have a action-class with several
parameters. ->ShowBlackBoardDetailsAction
And I have a JSP wich is mapped to showBlackBoardDetails.do and looks like
the following:
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<bean:message key="showBlackBoardDetails.title.pk"/>
<jsp:getProperty name="showBlackBoardDetailsForm" property="pk"/>
<br>
<bean:message key="showBlackBoardDetails.title.name"/>
<jsp:getProperty name="showBlackBoardDetailsForm" property="name"/>
How can I now include content of my action-result into my Table-JSP ?
Is that possible ? What muste I use for return in my Action-class? What
scope must I use in my struts-config.xml?
CAN ANYONE HELP ME?