📄 user_editor.jsp
字号:
<%@ page language="java" import="java.util.*,edu.yinhe.system.vo.*,edu.yinhe.system.common.GlobalNames" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>应用管理</TITLE>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<LINK href="<%=path %>/admins/css/general.css" type=text/css rel=stylesheet>
<LINK href="<%=path %>/admins/css/main.css" type=text/css rel=stylesheet>
</HEAD>
<BODY>
<DIV class=form-div>
<DIV class=list-div id=listDiv>
<jsp:include page="/admins/quanxian/users.html" flush="true">
<jsp:param name="method" value="find" />
</jsp:include>
<%
UsersVO usersVO = (UsersVO)request.getAttribute(GlobalNames.GET_VO);
%>
<form action="<%=path %>/admins/quanxian/users.html?method=modify" name="applicationform" method="post" target=main-frame>
<input type="hidden" name="id" value="<%=usersVO.getId() %>">
<TABLE cellSpacing=1 cellPadding=3>
<TBODY>
<TR>
<TH colspan="3">修改用户</TH>
<TR>
<TD width="49%" align="right">帐号:</TD>
<TD colspan="2" align=left><input type="text" name="account" value="<%=usersVO.getAccount() %>"></TD>
</TR>
<TR>
<TD align="right">密码:</TD>
<TD colspan="2" align=left><input type="password" name="pwd" value="<%=usersVO.getPwd()%>"></TD>
</TR>
<TR>
<TD align="right">确认密码:</TD>
<TD colspan="2" align=left><input type="password" name="pwd1" value="<%=usersVO.getPwd()%>"></TD>
</TR>
<TR>
<TD align="right">角色:</TD>
<TD colspan="2" align=left>
<select name="rid">
<%
List list = (List)session.getAttribute("permissionlist");
RolesVO rolesVO = null;
for(int i = 0;i<list.size();i++){
rolesVO = (RolesVO)list.get(i);
%>
<option name="rid" value="<%=rolesVO.getRid() %>" >
<%=rolesVO.getRname() %>
</option>
<%
}
%>
</select></TD>
</TR>
<TR>
<TD colspan="3" align="center"><input type="radio" value="1" name="state" checked="checked">使用<input type="radio" value="0" name="state">禁止</TD>
</TR>
<TR>
<TD align="right"><input type="submit" name="Submit" class=button value="修改"></TD>
<TD width="1%" align=left> </TD>
<TD width="50%" align=left><input onclick="parent.showclose()" type="reset" name="Submit2" class=button value="关闭"></TD>
</TR></TBODY></TABLE>
</form>
</DIV></DIV>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -