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

📄 active.jsp

📁 这是一个电子政务档案管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ include file="../hear/hear.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>员工信息增加</title>
<link href="../css/work.css" rel="stylesheet" type="text/css" />
<script src="../js/oa.js"></script>
<style type="text/css">
<!--
.style1 {
	font-family: "宋体";
	font-weight: bold;
	font-size: 16px;
}
.style8 {font-size: 14px; font-family: "宋体"; font-weight: bold; color: #0060BF; }
.style9 {
	color: #003366;
	font-weight: bold;
}
-->
</style>
</head>
<body bgcolor="#ECF1FF">
<table width="70%" height="149" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  <tr >
    <td height="22" colspan="7" align="center"   background="../image/zs.gif"><span class="style1">员工激活账号查看</span></td>
  </tr>
  <tr class="column">

    <td width="150" align="center"  ><span class="style8">员工姓名</span></td>
    <td width="104" height="21" align="center"  ><span class="style8">员工id</span></td>
    <td width="143" align="center"  ><span class="style8">员工密码</span></td>
    <td width="217" align="center"  ><span class="style8">最后激活时间</span></td>
    <td width="129" align="center"  ><span class="style8">删除记录</span></td>

  </tr>
<% 
	Collection coll=(Collection)request.getAttribute("msg");
	if(coll==null){
%>
   <tr align="center">
     <td height="40" colspan="7" align="center" class="advise"  ><span class="style9">没有激活账号</span></td>
  </tr>
<%
	}else{
		Iterator it=coll.iterator();
		while(it.hasNext()){
			Password pass=(Password)it.next();
%>
  <tr>

    <td align="center"  ><%= db.IdtoName(pass.getId()) %></td>
    <td height="25" align="center"  ><%= pass.getId() %></td>
    <td align="center" height="25" ><%= pass.getPassword() %></td>
    <td align="center" height="25" ><%= pass.getTime().substring(0,19) %></td>
    <td align="center" height="25"><a href="del?active=<%=pass.getId()%>"><img src="../image/empty.gif" width="20" height="20" border="0" /></a></td>

  </tr>
<%
		}
	}
%>
  <tr align="right" bgcolor="#ECF1FF">
    <td height="31" colspan="7"><span class="return" onclick="javascript:history.back(-1);">返回</span>&nbsp;&nbsp;&nbsp;&nbsp;</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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