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

📄 detail.jsp

📁 信息发布 发布系统 动态的菜单 和 信息统计
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -