📄 modifyclient.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">
-->
<script language=javascript>
function doChange(id,name,pass,tel,email,address){
var temp1 = id;
var temp2 = name;
var temp3 = pass;
var temp4 = tel;
var temp5 = email;
var temp6 = address;
document.location.href="emp.do?method=updateClient&id="+temp1+"&name="temp2+"&pass="temp3+"&tel="temp4+"&email="temp5+"&address="temp6;
}
</script>
</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">>>客户管理>>员工信息修改<br></font></font></div>
<br>
<br>
<html:form action="/modifyClient" method="post">
<logic:iterate id="sps" type="bean.Userinfo" name="Client" scope="request">
<input type="hidden" value="${sps.userid}" 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="userid" value="${sps.userid}" disabled="true"></html:text>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td>
用户姓名
</td>
<td>
<html:text property="username" value="${sps.username}"></html:text>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td>
密码
</td>
<td>
<html:password property="userpass" value="${sps.userpass}" ></html:password>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td>
电话
</td>
<td>
<html:text property="usertel" value="${sps.usertel}" ></html:text>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td>
E-mail
</td>
<td>
<html:text property="useremail" value="${sps.useremail}" ></html:text>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td>
地址
</td>
<td>
<html:text property="useraddress" value="${sps.useraddress}" ></html:text>
</td>
<td>
*必填
</td>
</tr>
<tr>
<td colspan="4" align="center">
<html:submit value="提交" />
</td>
</tr>
</table></logic:iterate>
</html:form>
<br>
<div align="center">
<a href="./clientList.jsp">返回客户列表</a>
</div>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -