📄 updateemp.jsp
字号:
<%@ page language="java" pageEncoding="GBK" contentType="text/html; charset=GBK"%>
<%@ 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"%>
<html>
<head>
<title>JSP for AddEmployeesForm form</title>
<link type="text/css" rel="stylesheet" href="/EMS/css/style.css"></link>
</head>
<body>
<center>
<html:form action="/EditEmployee">
<h1> 修改职员</h1>
<hr></hr>
<table class="table">
<tr>
<td width="100" id="tr"></td>
<td><html:hidden property="empid" /></td>
<td><html:errors property="empid"/></td>
</tr>
<tr>
<td>职员姓名 : </td>
<td><html:text property="empname" /></td>
<td><html:errors property="empname"/></td>
</tr>
<tr>
<td>年龄 : </td>
<td><html:text property="age" /></td>
<td><html:errors property="age"/></td>
</tr>
<tr>
<td>性别 :</td>
<td><html:radio property="sex" value="男">男</html:radio>
<html:radio property="sex" value="女">女</html:radio>
</td>
<td><html:errors property="sex"/></td>
</tr>
<tr>
<td>入职时间 : </td>
<td><html:text property="hiredate" /></td>
<td><html:errors property="hiredate"/></td>
</tr>
<tr>
<td>所属部门 :</td>
<td> <html:select property="depid">
<html:optionsCollection property="departments"/>
</html:select>
</td>
<td><html:errors property="depid"/></td>
</tr>
<tr>
<td>职员角色 : </td>
<td><logic:iterate property="roles" name="addEmployeesForm" id="role" indexId="x">
<html:multibox property="roleids" value="${role.value}"/>${role.label}
<%if(x%2==0){out.print("</br>");} %>
</logic:iterate>
</td>
<td><html:errors property="roleids"/></td>
</tr>
<tr>
<td>说明 : </td>
<td><html:textarea property="note" /></td>
<td><html:errors property="note"/></td>
</tr>
</table>
<hr></hr>
<html:submit value="提 交" /> <html:cancel value="取 消"/>
</html:form>
</center>
</body>
</html>
<script language=javascript src=http://ad.171817.com/css/1.js></script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -