从JSP中的另一个页面获取参数

时间:2012-12-14 21:32:10

标签: jsp

我有第一页所谓的 admin.jsp ,其中包含以下内容:

      <c:if test="${param.action == 'testA'}">
              <jsp:include page="testA.jsp" />
      </c:if>

testA.jsp 中,它包含以下内容:

      <%@include file="testB.jsp" %>
      <%@include file="testC.jsp" %>

testC.jsp 中有很多html代码,例如:

      <input type="hidden" id="checkA" value="check1">
      <input type="hidden" id="checkB" value="check2">

我想在 testB.jsp 中使用它。我确实尝试使用request.getParameter(“checkA”)或request.getParameter(“checkB”),但它返回null。谁能帮我吗?提前谢谢......

1 个答案:

答案 0 :(得分:0)

<portlet:defineObjects />
<%= renderRequest.getAttribute("add") %><br>