📄 displayallemployeeinfo.jsp
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
prefix="logic"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles"
prefix="tiles"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template"
prefix="template"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested"
prefix="nested"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>中国胜利汽配-显示雇员信息</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<style type="text/css">
<!--
body {
background-color: #F7F7F7;
}
.STYLE1 {font-size: 18px}
.STYLE4 {font-size: 12px}
-->
</style>
</head>
<body>
<table width="760" height="694" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td height="18" bgcolor="#F7F7F7">
<table width="760" height="17" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td>
<span class="STYLE4">当前位置:<A
href="/CarFitManageSystem/carIndex.jsp">首页</A> >雇员信息</span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="644" valign="top">
<p class="STYLE1">
雇员信息
<span class="STYLE4"> </span>
</p>
<html:form action="/searchByempname.do" method="post">
<table>
<tr>
<td><font size="2"><strong>请输入雇员姓名</strong></font>:</td>
<td>
<html:text property="empName"></html:text>
<html:submit value="查找"></html:submit>
</td>
</tr>
</table>
</html:form>
<logic:equal value="Info" name="info" scope="request">
<table width="760" border="1" cellspacing="0" cellpadding="1" bordercolor="#DCE7E4">
<tr>
<th height="22">
<div align="left" class="STYLE2 STYLE4">
雇员编号
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
登录名
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
真实姓名
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
雇员性别
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
联系方式
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
所属部门
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
雇员职务
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
出生日期
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
雇用日期
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
雇员薪水
</div>
</th>
<th>
<div align="left" class="STYLE2 STYLE4">
雇员Email
</div>
</th>
</tr>
<logic:iterate id="employeeinfo" name="empList" scope="session">
<tr>
<td height="15">
<span class="STYLE2 STYLE4"> ${employeeinfo.employeeNo} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.userName} </span>
</td>
<td>
<span class="STYLE2 STYLE4">${employeeinfo.empName} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.empSex} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.empPhone} </span>
</td>
<td>
<span class="STYLE2 STYLE4">
<bean:define id="dept" name="employeeinfo" property="departmentTable" />
${dept.depName}
</span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.duty} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.birthday} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.jobPass}</span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.salary} </span>
</td>
<td>
<span class="STYLE2 STYLE4"> ${employeeinfo.email} </span>
</td>
</tr>
</logic:iterate>
</table>
</logic:equal>
<logic:equal value="NoInfo" name="info" scope="request">
<table></table>
</logic:equal>
</td>
</tr>
<tr>
<td height="12">
<p>
<STRONG><span class="STYLE4"><A
href="http://www.ccd.com.cn/friendship_link/index.asp">友情链接:
</A><A href="http://webunion.ccd.com.cn/" target="_blank">中国建筑装饰网站联盟</A>
</span> </STRONG>
</p>
</td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -