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

📄 assign_role.jsp

📁 实现用户关系管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>


<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="/WEB-INF/jb-common.tld" prefix="jb"%>

<html:errors />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
	<title>编辑用户</title>
	<link href="css/style.css" rel="stylesheet" type="text/css">
	<script>
		function doDel(id){
			if ( window.confirm("确定删除?") ){
				window.location.href = "?o=doDel&id=" + id;
			}
		}
	</script>
	<script type="text/javascript" src="script/common.js"></script>
	<script type="text/javascript" src="script/icommon.js"></script>
	<script type="text/javascript" src="script/validate.js"></script>
</head>

<body class="main">
	<html:form action="user" method="post">
		<html:hidden property="o" value="doAssignRole" />
		<html:hidden property="item.usrId" />
		<html:hidden property="item.usrFlag" />
		<span style="font-weight: bold;">编辑用户</span>

		<div class="button_bar">
			<button class="common_button" onclick="javascript:history.go(-1);">
				返回
			</button>
			<button class="common_button"
				onclick="javascript:doSubmit('doAssignRole');">
				保存
			</button>

			<table class="query_form_table" border="0" cellPadding="3"
				cellSpacing="0">
				<tr>
					<th class="input_title">
						用户名
					</th>
					<td class="input_content">
						${userForm.item.usrName }&nbsp;
					</td>
					<th class="input_title">
						密码
					</th>
					<td class="input_content">
						******
					</td>
				</tr>
				<tr>
					<th class="input_title">
						角色
					</th>
					<td class="input_content">
						<html:select property="item.usrRole.roleId">
							<html:option value="0">未指定</html:option>
							<html:optionsCollection name="roles" label="roleName"
								value="roleId" />
						</html:select>
					</td>
					<th class="input_title">
						状态
					</th>
					<td class="input_content">
						${userForm.item.usrFlagString }&nbsp;
					</td>
				</tr>
			</table>
		</div>
		<script>
		build_validate("item.usrName","用户名不能为空","Limit","1","50");
		build_validate("item.usrPassword","密码不能为空","Limit","1","50");
		</script>
	</html:form>
</body>
</html:html>

⌨️ 快捷键说明

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