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

📄 modifyemp.jsp

📁 这是一个物流管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="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">
	-->

  </head>
  
  <body alink="#6697b4" vlink="blue" link="#6697b4">
  <strong><font color="#00a0be">Xsofa物流系统</font></strong>
     <hr>
    <div style="background-color: rgb(0, 160, 190);" ><font face="黑体"><font color="#ffffff">&gt;&gt;公司员工管理&gt;&gt;员工信息修改<br></font></font></div>
    <br>

    <br> 
  <html:form action="/modifyEmp" method="post">
     <logic:iterate id="emp" type="bean.Employeeinfo" name="Employee" scope="request">
	 <input type="hidden" value="${emp.employeeid}" name="id">	
		<table align="center" border="4" bordercolor="#00a0be">
			<tr>
				<td colspan="4" align="center" bgColor="#00a0be">
					<font size="4" color="#fffff">Xsofa物流公司员工信息修改</font>
				</td>
			</tr>
			<tr>
				<td>
					员工ID
				</td>
				<td>
					<html:text property="employeeid" value="${emp.employeeid}" disabled="true"></html:text>
				</td>
				<td>
					*必填
				</td>
			</tr>
			<tr>
				<td>
					员工姓名
				</td>
				<td>
					<html:text property="employeename" value="${emp.employeename}" ></html:text>
				</td>
				<td>
					*必填
				</td>
			</tr>

			<tr>
				<td>
					密码
				</td>
				<td>
			
			      <html:password property="employeepass" value="${emp.employeepass}" ></html:password>
				</td>
				<td>
					*必填
				</td>
			</tr>
			
			<tr>
				<td>
					职务名称
				</td>
				<td>
					<html:select property="duty">
					    <html:option value="人事经理">人事经理</html:option>
						<html:option value="客户经理">客户经理</html:option>
						<html:option value="市场专员">市场专员</html:option>
						<html:option value="调度员">调度员</html:option>
						<html:option value="库房">库房</html:option>
						<html:option value="运输">运输</html:option>
						<html:option value="配货员">配货员</html:option>
						<html:option value="司机">司机</html:option>				
					</html:select>
				</td>
				<td>
					*必填
				</td>
			</tr>			
			<tr>
				<td colspan="4" align="center">
					<html:submit value=" 提交 " />					
				</td>
			</tr>
		</table>
 </logic:iterate>
 </html:form>
 <br>
	<div align="center">
		&nbsp;&nbsp;&nbsp;&nbsp;
	    <a href="./empList.jsp">返回员工列表</a>
	</div>
  </body>
</html:html>

⌨️ 快捷键说明

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