0

我有一个包含其他 JSP 的 jsp。

主要的jsp:

        <% java.util.ArrayList <String> subJspName = (java.util.ArrayList <String>)(request.getSession().getAttribute("subJspName"));
        for (int jspIdx=0; jspIdx<subJspName.size(); jspIdx++) 
        {%>
            <jsp:include page='<%= subJspName.get(jspIdx) %>' />
            <tr>
                <td>&nbsp;</td>
            </tr>
        <%} %>              

其他子 JSP:

<layout:pager maxPageItems="5" width="100%"
                                sessionPagerId="currentPageZERO"> <!-- in the second sub-JSP, it will be currentPageONE -->
                                <logic:notEmpty
                                    name="tabellaGenericaForm"
                                    property="listaLogAccordoVec[0]"> <!-- in the second sub-JSP, it will be listaLogAccordoVec[1] -->
                                    <layout:collection
                                        name="tabellaGenericaForm"
                                        property="listaLogAccordoVec[0]" id="elemento"
                                        width="100%" styleClass="LISTA" styleClass2="LISTA2">

                                        <layout:collectionItem title="form.useragg"
                                            property="useragg" sortable="true" width="10%">
                                            <bean:write name="elemento" property="useragg" />
                                        </layout:collectionItem>                                         
                                    </layout:collection>


                </logic:notEmpty>
            </layout:pager>

当我只显示一个子 JSP 时,分页器对所有子 JSP 都可以正常工作(如果我单击第二个页面按钮,它就可以工作)。当我在同一页面上显示更多子 JSP 时,唯一有效的分页器是第一个子 JSP 的分页器(顶部的 jsp),并且当我单击例如第一个子 jsp 的按钮页面 2 时,所有子 JSP 都转到第 2 页(而不仅仅是第一个子 JSP)。

我如何解决这个问题? 截屏

这里生成的html(我清理了一点,所以它更具可读性,只留下了与三个表相关的部分):

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>

    <tr>
        <td bgcolor="#eaf3fa" colspan="8" class="testoGrassetto2"
            style="text-align: center">Dati anagrafici dello straniero</td>
    </tr>
    <tr>
        <td valign="top">


            <div style="width: 100%; overflow-x: auto;">
                <table cellspacing="0" cellpadding="0" border="0" align="CENTER"
                    width="100%" class="LISTA">
                    <tr>
                        <td valign="top"><table cellspacing="1" cellpadding="1"
                                border="0" width="100%">

                                <tr valign="top">
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=useragg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>User agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=dataagg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Data agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=operazione&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Operaz.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=codicefiscale&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Codice fiscale</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=cognome&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Cognome</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=nome&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Nome</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=sesso&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Sesso</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=statocivile&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Stato civile</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=datanascita&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Data di nascita</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=descrizionenazionenascita&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Nazione di nascita</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=descittanascita&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Città di nascita</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=descrizionecittadinanza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Cittadinanza di nascita</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=idrichiestaali&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>ID richiesta ALI</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=utenteali&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Utente ALI</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="25%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=passwordali&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Password ALI</td>
                                            </tr>
                                        </table>
                                    </th>
                                </tr>

                                <!-- HERE THERE'S THE DATAS, I HIDE THEM -->

                            </table>
                        </td>
                    </tr>
                </table>
            </div>
            <table border="0" cellspacing="1" cellpadding="1" width="100%"
                id="pager1380269837677">
                <tr>
                    <td width="50%" style="text-align: right"></td>
                    <td>1&nbsp;<a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageZERO">2</a>&nbsp;</td>
                    <td width="50%" style="text-align: left"><a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=0&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageZERO">&gt;&gt;</a>
                    </td>
                </tr>
            </table></td>
    </tr>

</body>
</html>
<tr>
    <td>&nbsp;</td>
</tr>








<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>

    <tr>
        <td bgcolor="#eaf3fa" colspan="8" class="testoGrassetto2"
            style="text-align: center">Dati di recapito</td>
    </tr>
    <tr>
        <td valign="top">


            <div style="width: 100%; overflow-x: auto;">
                <table cellspacing="0" cellpadding="0" border="0" align="CENTER"
                    width="100%" class="LISTA">
                    <tr>
                        <td valign="top"><table cellspacing="1" cellpadding="1"
                                border="0" width="100%">
                                <tr valign="top">
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=useragg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>User agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=dataagg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Data agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=operazione&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Operaz.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=comuneresidenza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Comune di residenza</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=desprovinciaresidenza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Provincia di residenza</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=indirizzoresidenza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Indirizzo di residenza</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=numerocivicoresidenza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Civico di residenza</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=capresidenza&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>CAP</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=telefono&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Telefono</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=email&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Email</td>
                                            </tr>
                                        </table>
                                    </th>
                                </tr>

                                <!-- HERE THERE'S THE DATAS, I HIDE THEM -->

                            </table>
                        </td>
                    </tr>
                </table>
            </div>
            <table border="0" cellspacing="1" cellpadding="1" width="100%"
                id="pager1380269837836">
                <tr>
                    <td width="50%" style="text-align: right"></td>
                    <td>1&nbsp;<a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageONE">2</a>&nbsp;</td>
                    <td width="50%" style="text-align: left"><a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=1&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageONE">&gt;&gt;</a>
                    </td>
                </tr>
            </table></td>
    </tr>

</body>
</html>
<tr>
    <td>&nbsp;</td>
</tr>








<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>

    <tr>
        <td bgcolor="#eaf3fa" colspan="8" class="testoGrassetto2"
            style="text-align: center">Dati dei documenti e del permesso di
            soggiorno</td>
    </tr>
    <tr>
        <td valign="top">


            <div style="width: 100%; overflow-x: auto;">
                <table cellspacing="0" cellpadding="0" border="0" align="CENTER"
                    width="100%" class="LISTA">
                    <tr>
                        <td valign="top"><table cellspacing="1" cellpadding="1"
                                border="0" width="100%">

                                <tr valign="top">
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=useragg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>User agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=dataagg&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Data agg.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=operazione&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Operaz.</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=destipodocumento&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Tipo documento</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=numerodocumento&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Numero documento</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=rilasciatoda&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Rilasciato da</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=datarilasciodocumento&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Data rilascio</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=datascadenzadocumento&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>data scadenza</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=duratapermessosoggiorno&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Durata permesso di soggiorno</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="15%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=tiporichiestapermessosoggiorno&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Tipo richiesta permesso di soggiorno</td>
                                            </tr>
                                        </table>
                                    </th>
                                    <th class="LISTA" width="10%"><table border="0"
                                            width="100%">
                                            <tr>
                                                <td><a
                                                    href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=desprovinciaprefpermesso&amp;layoutCollectionState=0"><img
                                                        src="/AccordoIntegrazione/config/sort.gif" border="0"
                                                        alt="sort">
                                                </a>
                                                </td>
                                                <td>Provincia pref. permesso</td>
                                            </tr>
                                        </table>
                                    </th>
                                </tr>

                                <!-- HERE THERE'S THE DATAS, I HIDE THEM -->

                            </table>
                        </td>
                    </tr>
                </table>
            </div>
            <table border="0" cellspacing="1" cellpadding="1" width="100%"
                id="pager1380269837911">
                <tr>
                    <td width="50%" style="text-align: right"></td>
                    <td>1&nbsp;<a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageTWO">2</a>&nbsp;</td>
                    <td width="50%" style="text-align: left"><a
                        href="/AccordoIntegrazione/sort.do?layoutCollection=2&amp;layoutCollectionProperty=&amp;layoutCollectionState=0&pagerPage=1&pagerSessionId=currentPageTWO">&gt;&gt;</a>
                    </td>
                </tr>
            </table></td>
    </tr>

</body>
</html>
4

2 回答 2

0

我不使用 struts1,但从正常的谷歌搜索、javascript 知识和查看您的代码来看,我认为这应该可行:

<layout:collection
                                        name="tabellaGenericaForm"
                                        property="listaLogAccordoVec[0]" id="elemento"
                                        width="100%" styleClass="LISTA" styleClass2="LISTA2">

我猜上面的代码负责显示分页元素(1,2 上一个,下一个)我看到这个标签有一个 id 字段/属性。

只需在不同的子 jsps 中为 id 标签使用不同的值,它应该可以正常工作。

于 2013-09-25T20:52:49.953 回答
0

利用

<% java.util.ArrayList <String> subJspName = (java.util.ArrayList <String>)(request.getSession().getAttribute("subJspName"));
int i=0;
for (int jspIdx=0; jspIdx<subJspName.size(); jspIdx++)
{%>
  <jsp:include page='<%= subJspName.get(i) %>' />
  <tr>
    <td>&nbsp;</td>
  </tr>
<%
i =  i + 1;
} %> 
于 2013-09-25T14:22:35.343 回答