📄 new_user.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>
<title>My JSP 'new_user.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">
-->
<%
TCustomer tc=(TCustomer)session.getAttribute("user");
System.out.println(tc+"iiiiiiiiiiii");
TAccount ta=(TAccount)request.getAttribute("account");
System.out.println(ta+"qqqqqqqqqqqq");
%>
<script type="text/javascript">
alert(已找到客户账户信息,请为用户开通手机。。。。。。);
</script>
</head>
<body bgcolor="#f1f3f9">
<form action="CustomerServlet?flag=add_user" method="post"
>
<input type="hidden" name="flag" value="newuser">
手机号码:
<input type="text" name="phone_numb" id="phone_numb">
<br>
<br>
漫游状态:
<input type="radio" name="zt" value="P">
省内漫游
<input type="radio" name="zt" value="D">
国内漫游
<input type="radio" name="zt" value="I">
国际漫游
<br>
<br>
通话级别:
<input type="radio" name="grade" value="L">
本地通话
<input type="radio" name="grade" value="D">
国内长途
<input type="radio" name="grade" value="I">
国际长途
<br>
<br>
客户ID:
<input type="text" name="id" id="id" value=<%=tc.getCustomerId() %> readonly>
<br>
<br>
帐号:
<input type="text" id="accountId" name="Account_ID" value="<%=ta.getAccount_ID() %>" readonly>
<br>
<br>
<input type="submit" class="tb_top_1" value="下一步>>">
<input type="reset" class="tb_top_1" value="全部重写">
<br>
<br>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -