📄 operator_updata.jsp
字号:
<%@ page language="java" import="java.util.*" import="com.mobile.bean.*" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'operator_updata.jsp' starting page</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 bgcolor="#f1f3f9">
>>修改记录
<div align="center">
<TD height="600" bgColor=#f1f3f9>
<%
Operator operator =(Operator)request.getAttribute("operator");
//System.out.println(operator+"@@@");
%>
<form method="POST" action="ChinaMobileServlet?flag=editOperator">
<table>
<tr>
<td>登录ID:
<input type="text" name="T1" size="20" value="<%=operator.getOperator_ID() %>" readonly >
<font color="red"><b><i>**不可修改**</i></b></font>
</td>
</tr>
<tr>
<td>姓 名:
<input type="text" name="T2" size="20" value=<%=operator.getOperator_Name() %>>
</td>
</tr>
<tr>
<td>密码:
<input type="password" name="T3" size="20" value=<%=operator.getOperator_Pwd() %>>
</td>
</tr>
<tr>
<td>密码确认:
<input type="password" name="T4" size="20" value=<%=operator.getOperator_Pwd() %>>
</td>
</tr>
<tr>
<td>是否管理员:<input type="text" name="R1" value=<%=operator.getIs_Admin() %> >是填写y,不是填写n
</td>
</tr>
<tr>
<td><input type="submit" value="提交" name="B1">
<input type="reset" value="重置"></td>
</tr>
</table>
</form>
</TD>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -