?? active.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: #000000; }
-->
</style>
</head>
<body bgcolor="#FFFFDF">
<table width="49%" height="163" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr >
<td height="22" colspan="7" align="center" background="../KCM/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" >沒有激活賬號</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="29" align="center" ><%= pass.getId() %></td>
<td align="center" ><%= pass.getPassword() %></td>
<td align="center" ><%= pass.getTime().substring(0,19) %></td>
<td align="center"><a href="del?active=<%=pass.getId()%>"><img src="../image/empty.gif" width="20" height="20" border="0" /></a></td>
</tr>
<%
}
}
%>
<tr align="right" bgcolor="#FFFFDF">
<td height="40" colspan="7"><span class="return" onclick="javascript:document.location='sys.htm';"><img src="../image/more.gif" width="30" height="9" />返回</span> </td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -