📄 viewuser.jsp
字号:
<%@ include file="../sys/rolecheck.jsp"%>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<link rel="stylesheet" href="css/1.css" type="text/css">
<html>
<style type="text/css">
<!--
.style1 {font-size: 14}
-->
</style>
<head>
<title>
viewuser
</title>
</head>
<body bgcolor="#ffffff">
<h1>
<c:set var="user" value="${auser}"/>
<p class="tilte">查看用户</p>
<c:url value="/updateUserAction.do" var="edit">
<c:param name="user_id" value="${user.user_id}" />
</c:url>
<a href="<c:out value="${edit}"/>">修改</c:out>
</a>
<c:url value="/delUserAction.do" var="del">
<c:param name="userid" value="${user.user_id}">
</c:param>
</c:url>
<a href="<c:out value="${del}"/>"> 删除</c:out>
</a>
<table width="273" border="0" cellspacing="1">
<tr>
<td width="120" scope="col">用户编号:
<!--input type="hidden" name="user_id" value="<c:out value='${user.user_id}'/>"/--></td>
<td width="119" scope="col"> <c:out value='${user.user_id}'/></td>
</tr>
<tr>
<td>用户名:</td>
<td> <c:out value="${user.username}" /> </td>
</tr>
<tr>
<td>角色: </td>
<td> <c:out value="${user.role_name}"></c:out> </td>
</tr>
<tr>
<td>真实姓名: </td>
<td> <c:out value="${user.userrealname}" /></td>
</tr>
<tr>
<td>用户Email: </td>
<td> <c:out value="${user.useremail}" /></td>
</tr>
<tr>
<td>联系电话:</td>
<td> <c:out value="${user.tel}" /> </td>
</tr>
<tr>
<td>备注:</td>
<td> <c:out value="${user.content}" /> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -