editemployee.jsp~3~

来自「100多M的J2EE培训内容」· JSP~3~ 代码 · 共 88 行

JSP~3~
88
字号
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
<html>
<head>
<title><bean:message key="app.title" /></title>
</head>
<body>
<table width="500"
border="0" cellspacing="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
</tr>
<tr bgcolor="#36566E">
<td height="100%" width="100%">
<div align="left">
<img src="images/hp_logo_wiley.gif"
width="100%"
height="100%">
</div>
</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</table>
<html:errors />
<html:form action="/editEmployeeAction.do"name="employeeForm"type="strutsds.EmployeeActionForm"scope="request" >
<table width="500" border="0">
<tr>
<td><bean:message key="app.username" />:</td>
<td><html:text property="username" /></td>
<td><bean:message key="app.password" />:</td>
<td><html:password property="password" /></td>
</tr>
<tr>
<td><bean:message key="app.name" />:</td>
<td><html:text property="name" /></td>
<td><bean:message key="app.phone" />:</td>
<td><html:text property="phone" /></td>
</tr>
<tr>
<td><bean:message key="app.email" />:</td>
<td><html:text property="email" /></td>
<td><bean:message key="app.department" />:</td>
<td>
<html:select property="depid" size="1">
<html:option value="1">
<bean:message key="app.administration" />
</html:option>
<html:option value="2">
<bean:message key="app.network" />
</html:option>
<html:option value="3">
<bean:message key="app.sales" />
</html:option>
<html:option value="4">
<bean:message key="app.engineering" />
</html:option>
</html:select>
</td>
</tr>
<tr>
<td>
<bean:message key="app.role" />:
</td>
<td>
<html:select property="roleid" size="1">
<html:option value="1">
<bean:message key="app.manager" />
</html:option>
<html:option value="2">
<bean:message key="app.employee" />
</html:option>
</html:select>
</td>
<td colspan="2" align="center">
<html:submit />
<html:cancel />
<html:reset />
</td>
</tr>
</table>
</html:form>
</body>
</html>

⌨️ 快捷键说明

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