原来的代码是用不同的标签显示的
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
                    <c:choose>
                     <c:when test="${payinfoList==null || payinfoList.size()==0 }">
                     <tr height="30"><td align="center" style="border:1 solid">缴费后,您发布信息就可在这里显示!</td></tr>
                     </c:when>
                     <c:otherwise>
                     <c:forEach var="payinfo" items="${payinfoList }" varStatus="status">
                     <c:if test="${status.index%2==0 }">
                     <tr height="23">                    
                     </c:if>
                     <td width="50%">『<b>${payinfo.typeName }</b>』<a href="">${payinfo.title }</a></td>
                     <c:if test="${status.index%2==1 }">
                     </tr>
                     </c:if>
                     </c:forEach>
                     </c:otherwise>
                    </c:choose>
                 </table>这个可以显示内容。为什么我用struts-tags显示就不行呢?如果可以怎么修改?谢谢!!