detail.jsp

来自「信息发布 发布系统 动态的菜单 和 信息统计」· JSP 代码 · 共 80 行

JSP
80
字号
<%@ 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">
	<xt:hidden property="userID" />
	<table border="1" cellspacing="1" cellpadding="3" width="600" class="detail_table">
		<col width="100">
		<col width="200">
		<col width="100">
		<col width="200">
		<tr>
			<th>用户名称</th>
			<td><bean:write name="baseInfoUser" property="username"/></td>
			<th>姓名</th>
			<td><bean:write name="baseInfoUser" property="userRealname"/></td>
		</tr>
		<tr>
			<th>公司</th>
			<td colspan="3"><bean:write name="baseInfoUser" property="userCompany"/></td>
		</tr>
		<tr>
			<th>部门</th>
			<td colspan="3"><bean:write name="baseInfoUser" property="userDepartment"/></td>
		</tr>
		<tr>
			<th>职位</th>
			<td colspan="3"><bean:write name="baseInfoUser" property="userGroup"/></td>
		</tr>
		<tr>
			<th>个人电话</th>
			<td><bean:write name="baseInfoUser" property="userTelPerson"/></td>
			<th>办公电话</th>
			<td><bean:write name="baseInfoUser" property="userTelOffice"/></td>
		</tr>
		<tr>
			<th>个人传真</th>
			<td><bean:write name="baseInfoUser" property="userTaxPerson"/></td>
			<th>办公传真</th>
			<td><bean:write name="baseInfoUser" property="userTaxOffice"/></td>
		</tr>
		<tr>
			<th>个人手机</th>
			<td><bean:write name="baseInfoUser" property="userMobilePerson"/></td>
			<th>办公手机</th>
			<td><bean:write name="baseInfoUser" property="userMobileOffice"/></td>
		</tr>
		<tr>
			<th>E-mail</th>
			<td colspan="3"><bean:write name="baseInfoUser" property="userEmail"/></td>
		</tr>
		<tr>
			<th>描述</th>
			<td colspan="3"><bean:write name="baseInfoUser" property="userDescription"/></td>
		</tr>
	</table>
	<table border="0" cellspacing="1" cellpadding="5" width="600" class="button_table">
		<tr align="center">
			<td><button onclick="history.back()">返 回</button></td>
		</tr>
	</table>
</xt:form>
</div>
</body>
</html>

⌨️ 快捷键说明

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