maillist.jsp

来自「用java编的用到」· JSP 代码 · 共 37 行

JSP
37
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?