📄 a_list.jsp
字号:
<%@ 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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -