⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 add.jsp

📁 信息发布 发布系统 动态的菜单 和 信息统计
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ include file="/jsp/_plugin/taglib.jsp"%>

<html>
<head>
<title>添加用户</title>
<xt:style />
<xt:meta />
<xt:js />
</head>

<body>
<div class="page_title">
&nbsp&nbsp用户管理 ->
<a href="<%=request.getContextPath()%>/BaseInfoUser.do?method=list">用户列表</a> ->
添加用户
</div>
<div align="center">
<xt:form action="/BaseInfoUser">
	<table id="edit_table" border="1" cellspacing="1" cellpadding="3" width="600" class="edit_table">
		<col width="100">
		<col width="200">
		<col width="100">
		<col width="200">
		<tr>
			<th>用户名称</th>
			<td><xt:text property="username" prompt="名称" nul="false" width="150" maxlength="25"/></td>
			<th>姓名</th>
			<td><xt:text property="userRealname" prompt="姓名" nul="false" width="150" maxlength="25"/></td>
		</tr>
		<tr>
			<th>密码</th>
			<td><input type="password" id="password" name="password" prompt="密码" maxlength="25" nul="false" style="width:150px;"> <font color="#FF0000">*</font></td>
			<th>重复密码</th>
			<td><input type="password" id="repassword" name="repassword" prompt="重复密码" maxlength="25" nul="false" style="width:150px;" equals="password"> <font color="#FF0000">*</font></td>
		</tr>
		<tr>
			<th>个人电话</th>
			<td><xt:text property="userTelPerson" prompt="个人电话" width="150" maxlength="25"/></td>
			<th>办公电话</th>
			<td><xt:text property="userTelOffice" prompt="办公电话" width="150" maxlength="25"/></td>
		</tr>
		<tr>
			<th>个人传真</th>
			<td><xt:text property="userTaxPerson" prompt="个人传真" width="150" maxlength="25"/></td>
			<th>办公传真</th>
			<td><xt:text property="userTaxOffice" prompt="办公传真" width="150" maxlength="25"/></td>
		</tr>
		<tr>
			<th>个人手机</th>
			<td><xt:text property="userMobilePerson" prompt="个人手机" width="150" maxlength="25"/></td>
			<th>办公手机</th>
			<td><xt:text property="userMobileOffice" prompt="办公手机" width="150" maxlength="25"/></td>
		</tr>
		<tr>
			<th>E-mail</th>
			<td colspan="3"><xt:text property="userEmail" prompt="E-mail" width="400" maxlength="100"/></td>
		</tr>
		<tr>
			<th>描述</th>
			<td colspan="3"><xt:text property="userDescription" prompt="描述" width="400" maxlength="250"/></td>
		</tr>
	</table>
	<table border="0" cellspacing="0" cellpadding="0" width="600" class="button_table">
		<tr>
			<td width="50%"><xt:submitButton text="保 存" actionMethod="save"/></td>
			<td width="50%"><button onclick="history.back()">返 回</button></td>
		</tr>
	</table>
</xt:form>
</div>
</body>
</html>

⌨️ 快捷键说明

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