a_list.jsp
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page language="java" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
- <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
- <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
- <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <p> </p>
- <table width="100%" border="1" class="myTable">
- <tr class="tableHead">
- <td align="center">
- 系 统 公 告
- </td>
- </tr>
- <logic:present name="apage" scope="request">
- <logic:present name="apage" property="list" scope="request">
- <logic:empty name="apage" property="list" scope="request">
- <tr>
- <td>
- <font color="red">暂时没有公告信息</font>
- </td>
- </tr>
- </logic:empty>
- </logic:present>
- </logic:present>
- <logic:present name="apage" scope="request">
- <logic:present name="apage" property="list" scope="request">
- <logic:notEmpty name="apage" property="list" scope="request">
- <logic:iterate id="affiche" name="apage" property="list" scope="request">
- <tr>
- <td align="left">
- ·<a href="${pageContext.request.contextPath}/affiche.do?method=show&task=look&id=${affiche.aid}" target="_blank">${affiche.atitle}</a>
- <c:if test="${affiche.arealTime>=datetime}">
- <img width='25' height='10' src='${pageContext.request.contextPath}/Img_file/news.gif' />
- </c:if>
- ${affiche.asendTime}
- </td>
- </tr>
- </logic:iterate>
- </logic:notEmpty>
- </logic:present>
- </logic:present>
- </table>
- <table width=100%>
- <tr>
- <td>
- <div align="right" style="font-size: 8">
- ${apage.pageBar}
- </div>
- </td>
- </tr>
- </table>
- </body>
- </html>