?? maillist.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"
contentType="text/html; charset=UTF-8"%>
<%@ include file="/taglibs.inc.jsp" %>
<html>
<head>
<title>郵件列表</title>
</head>
<body>
<div align="center"><strong>郵件列表</strong> <br />
<table width="695" border="0">
<tr>
<th width="172" bgcolor="#CCFFFF" scope="col">發信人</th>
<th width="270" bgcolor="#CCFFFF" scope="col">主題</th>
<th width="156" bgcolor="#CCFFFF" scope="col">時間</th>
<th width="89" bgcolor="#CCFFFF" scope="col">刪除</th>
</tr>
<c:if test="${eMailList!=null}">
<c:forEach items="${eMailList}" var="mail">
<tr>
<td>${mail.from}</td>
<td><a href="readMail.do?emailID=${mail.emailID}">${mail.title}</a></td>
<td>${mail.mailDate}</td>
<td><a href="killMail.do?emailID=${mail.emailID}">刪除</a></td>
</tr>
</c:forEach>
</c:if>
<c:if test="${eMailList==null}">
<tr><td align="center" colspan="4">沒有郵件!</td></tr>
</c:if>
</table>
</div>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -