如何根据Servlet的请求参数在jsp中显示特定的表头?

时间:2015-05-05 10:54:42

标签: jsp if-statement

将标签附加到servlets属性:

req.setAttribute("show", "itemList");

如何根据servlets的属性显示表头

 <table>
        <c:if test="${show="itemList"}">
                    <thead>
                        show info1
                    </thead>
        </c:if>
        <c:if test="${show="historyItemList"}">
                     <thead>
                        show info2
                     </thead>
         </c:if>

                    <tbody>
         <c:forEach items="${userItemsList}" var="item">
                    <tr>
                        <td><c:out value="${item.id}" /></td>
                        <td><c:out value="${item.title}" /></td>
                        <td><c:out value="${item.link}" /></td>
                    </tr>
         </c:forEach>
            </tbody>
    </table>

我有:

  

org.apache.jasper.JasperException:/userItems.jsp(line:51,column:36)等于符号预期
  什么是正确的语法?

0 个答案:

没有答案