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

📄 adduser.jsp

📁 为交课程设计
💻 JSP
字号:
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<%@ include file="../sys/rolecheck.jsp"%>

<link rel="stylesheet" href="css/1.css" type="text/css">
<html:html>
<head>
<title>
添加用户
</title>
<SCRIPT language=JavaScript src="js/validform.js">
</SCRIPT>
</head>
<body>
  <html:errors/>
<p class="tilte">添加用户</p>
<html:form action="/addUserAction.do" method="POST" name="addUserForm" type="com.infodeliver.hr.sys.user.form.UserActionForm" onsubmit="return Onsubmitadduser()">

<table width="274" border="0" cellspacing="1">
  <tr>
    <td width="110" scope="col" bgcolor="#DDDDDD"  >用户名:</td>
    <td width="198" scope="col" bgcolor="#F0F0F0" ><html:text property="username"/> *</td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >角色:</td>
    <td bgcolor="#F0F0F0" ><select name="role">
        <c:forEach var="ro" items="${role_list}">
          <option value="<c:out value="${ro.role_id}" />">
            <c:out value="${ro.role_name}" />
          </option>
        </c:forEach>
  </select></td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >真实姓名:</td>
    <td bgcolor="#F0F0F0" ><html:text property="userrealname"/></td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >密码:</td>
    <td bgcolor="#F0F0F0" ><html:password property="password"/> *</td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >确认密码: </td>
    <td bgcolor="#F0F0F0" ><html:password property="cfpassword"/> * </td>
  </tr>
  <tr>
    <td  bgcolor="#DDDDDD" >用户Email: </td>
    <td bgcolor="#F0F0F0" ><html:text property="useremail"/> </td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >联系电话:</td>
    <td bgcolor="#F0F0F0" ><html:text property="tel"/> </td>
  </tr>
  <tr>
    <td bgcolor="#DDDDDD"  >备注:</td>
    <td  bgcolor="#F0F0F0"><html:textarea property="content"></html:textarea> </td>
  </tr>
</table>
<p><html:submit property="submit" value="提交"/>
<html:reset value ="重写"/></p>
</html:form>
</body>
</html:html>

⌨️ 快捷键说明

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