如何在jsp页面中通过href链接传递数据时隐藏URL

时间:2012-04-25 11:28:46

标签: jsp

单击href链接时,如何将数据从一个JSP传递到另一个JSP。那时我需要隐藏url中的数据。

<table  id="results" class="ex2 headQ"  width="550px" >
        <%
            for (int i = 0; i < list.size(); i++) {
        %>
        <tr></tr>

        <tr class="mycolor">  
            <%
                Query studentDetailsDTO = (Query) list.get(i);
                out.println("<td class='divClass'><a href=''>" +studentDetailsDTO.getTitle()+"</a></td>");
            %>
        </tr>

        <tr>  
            <%
                out.println("<td class='wrapword'> " + studentDetailsDTO.getQuestion() + "</td>");
            %>
        </tr>
        <%
            }
        %>
</table>

0 个答案:

没有答案