📄 displayemail.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="java.sql.*"%>
<%@ page import="to.model.*"%>
<%@ page import="java.util.*"%>
<%@ page import="to.model.Login.*"%>
<%@ page import="to.model.Email.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>收件箱</title>
<style type="text/css">
table{font-size:13px}
<!--
a:link { text-decoration: none;color: black}
a:active { text-decoration:blink;}
a:hover {text-decoration: underline;position: relative; top: 3px; left: 3px; color: red}
a:visited { text-decoration:none;color: black}
-->
</style>
</head>
<body>
<form method="get">
<table cellspacing="1" cellpadding="1" border="0" width="800" align="center">
<%
loginItem li=(loginItem)session.getAttribute("user");
if(li==null)
{
response.sendRedirect("OfficeLogin.jsp");
}
%>
<tr>
<td colspan="5" height="1"><hr/></td>
</tr>
<tr>
<th colspan="5" align="center">收件箱列表</th>
</tr>
<tr bgcolor="#006699">
<th width="160" align="center"><font color="White">信件标题</font></th>
<th width="160" align="center"><font color="White">发送人</font></th>
<th width="160" align="center"><font color="White">发送时间</font></th>
<th width="160" align="center"><font color="White">信件状态</font></th>
<th width="160" align="center"><font color="White">删除</font></th>
</tr>
<%
try
{
EmailBean eb=new EmailBean();
Collection cl=(Collection)eb.getEmail(li.getPeopleID());
Iterator it=cl.iterator();
while(it.hasNext())
{
EmailItem ei=(EmailItem)it.next();
%>
<tr bgcolor="#ddddee">
<td width="160" align="center"><img src="image/arr.gif"/><a href="displayEmailMessage.jsp?id=<%=ei.getEmailID()%>"><%=ei.getEmailT()%></a></td>
<td width="160" align="center"><%=ei.getPromulgator()%></td>
<td width="160" align="center"><%=ei.getAddD()%></td>
<td width="160" align="center"><%=ei.getIfreand()%></td>
<td width="160" align="center"><font color="Blue"><img src="image/arr.gif"/><a href="DeleteEmailAction.do?id=<%=ei.getEmailID()%>">删除</a></font></td>
</tr>
<%
}
}
catch(Exception e)
{
e.printStackTrace();
}
%>
<tr>
<td colspan="5" height="1"><hr/></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -