⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inbox.jsp

📁 一个jsp的oa系统,里面有很多亮点学习!
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=GBk"
    pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Insert title here</title>
<style type="text/css">
<!--
.STYLE1 {
	font-size: 14px;
	font-weight: bold;
}
.ziti {
	font-size: 12px;
}
-->
</style>
</head>
<body>
<p class="STYLE1">发件箱列表</p>
<table width="100%" border="1" cellspacing="0" bordercolor="#00FF99">
  <tr bgcolor="#00FF99">
    <td width="120" height="30" align="center" class="ziti">发件编号</td>
    <td height="30" align="center" class="ziti">收件人姓名</td>
    <td height="30" align="center" class="ziti">发件人姓名</td>
    <td height="30" align="center" class="ziti">操 作</td>
  </tr>
  <c:forEach items="${inBoxs}" var="inBox">
  <tr bgcolor="#CCFFFF">
    <td width="120" height="20" align="center" class="ziti">${inBox.inboxId}</td>
    <td height="20" align="center" class="ziti">${inBox.acceptPersonName}</td>
    <td height="20" align="center" class="ziti">${inBox.sendPersonName}</td>
    <td height="20" align="center" class="ziti">
    <c:url value="/EmailServlet?method=delInBox&inboxId=${inBox.inboxId}" var="url"></c:url>
    <a href="${url}">[删除]</a>
    <c:url value="/EmailServlet?method=lookinbox&inboxId=${inBox.inboxId}" var="url1"></c:url>
     <a href="${url1}">[查看]</a>
     <c:url value="/EmailServlet?method=reply&inboxId=${inBox.inboxId}" var="url1"></c:url>
     <a href="${url1}">[回复]</a></td>
  </tr>
  </c:forEach>
</table>

</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -