📄 useradd.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<jsp:include flush="true" page="header.jsp" />
<form method="post" action="adduselog.jsp"">
<jsp:include page="show.jsp"></jsp:include>
<table align="right" bgcolor="#00CCFF" width="20%"><tr><td><img align="middle" src="showphto"></td></tr></table>
<table align="center" width="40%">
<tr align="left">
<td colspan="2"> <font size="+2" >Please fill in the form <br></font><font size="+1" color="#FF0000"> (Must fill if the item with *)</font></td>
</tr>
<tr>
<td>
<div align="center">客 户 号:</div></td><td><INPUT type="text" name="custom_id" size="30" value=<%=session.getAttribute("custom_id") %> ><font color="#FF0000"> *</font>
</td>
</tr>
<tr>
<td>
<div align="center">标 的 号:</div></td><td><INPUT type="text" name="target_id" size="30" value=<%=session.getAttribute("target_id") %>><font color="#FF0000"> *</font>
</td>
</tr>
<tr>
<td>
<div align="center">联系人号:</div></td>
<td><INPUT type="text" name="person_id" size="30" >
</td>
</tr>
<tr>
<td>
<div align="center">客户性质:</div></td><td>
<select name="custom_property" size="1">
<option value="carriage"> 请 选 择 </option>
<option value="1">政府招标</option>
<option value="2">重要客户</option>
<option value="3">其他客户</option>
<option value="4">其他</option>
</select><font color="#FF0000"> *</font>
</td>
</tr>
<tr>
<td>
<div align="center">客户名称:</div></td><td><input type="text" name="custom_name" size="30"><font color="#FF0000">
</td>
</tr>
<tr>
<td>
<div align="center">客户地址:</div></td><td><input type="text" name="custom_address" size="30">
</td>
</tr>
<tr><td><div align="center">初登日期</div></td><td>
<select name="year1" size="1">
<%
for(int i=1987;i<=2007;i++){
%>
<option value=<%= i %> ><%= i %></option>
<% } %>
</select> 年
<select name="month1" size="1">
<% for(int i=1;i<=12;i++){
String temp=Integer.toString(new Integer(i));
if(i<=9)temp="0"+temp; %>
<option value=<%= temp %> ><%= temp %></option>
<% } %>
</select> 月
<select name="day1" size="1">
<% for(int i=1;i<=31;i++){
String curday=Integer.toString(new Integer(i));
if(i<=9)curday="0"+curday; %>
<option value=<%= curday %> ><%= curday %></option>
<% } %>
</select> 日
</td>
<tr>
<td>
<div align="center">电话号码:</div></td><td><input type="text" name="phone" size="10">—<input type="text" name="number" size="16"><font color="#FF0000"> *</font>
</td>
</tr>
<tr><td><div align="center">移动电话:</div></td><td><input type="text" name="mobile_phone" size="30"> </td></tr>
<tr>
<td>
<div align="center">传真号码:</div></td><td><input type="text" name="fax" size="10">—<input type="text" name="number" size="16"><font color="#FF0000"> *</font>
</td>
</tr>
<tr><td><div align="center">登记人:</div></td><td><input type="text" name="booker" size="30"></td></tr>
<tr><td><div align="center">用户密码:</div></td><td><input type="password" name="password" size="30"></td></tr>
<tr>
<td><div align="center">法人代表:</div></td><td><input type="text" name="leader" size="30"></td>
</tr>
<tr>
<td>
<div align="center">法人组织机构代码:</div></td><td><input type="text" name="custom_remark" size="30">
</td>
</tr>
<tr><td><input type="submit" name="submit"></td></tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -