📄 userinf.jsp
字号:
<%@ page language="java" import="com.test.ps.user.*" pageEncoding="utf-8"%>
<%
String userName=request.getParameter("userName");
userBean user=userManager.getUser(userName);
%>
<html>
<head>
<title>My JSP 'userInf.jsp' starting page</title>
<link href="../img/adminStyle.css" type="text/css" rel="stylesheet" />
</head>
<body>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="80" colspan="3">
<jsp:include page="../adminTop.jsp" flush="true"/></td>
</tr>
<tr>
<td colspan="3" height="30" bgcolor="#e6f3ff"><span class="STYLE2"><a href="../adminRight.jsp">首页</a>><a href="javascript:history.go(-1)">订单列表</a>><a href="javascript:history.go(-1)">订单详情</a>>查看用户信息</span></td>
</tr>
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td colspan="3" height="30"><hr size="5" color="#e6f3ff"></td>
</tr>
<tr>
<td height="30" align="left"><h1>用户信息</h1></td>
</tr>
<tr>
<td valign="top" height="91">
<table border="0" cellspacing="1" cellpadding="0" align="left" width="662">
<tr bgcolor="#E9F4F5">
<td height="30" colspan="2" align="center">
<div align="left"><strong>用户ID:</strong> <%=user.getUserId()%></div></td>
</tr>
<tr bgcolor="#E9F4F5">
<td width="210" height="30" align="center">
<div align="left"><strong>用户名:</strong> <%=user.getUserName()%> </div></td>
</tr>
<tr bgcolor="#E9F4F5">
<td height="30" colspan="2" align="center"><div align="left"><strong>电话:</strong> <%=user.getPhone()%></div></td>
</tr>
<tr bgcolor="#E9F4F5">
<td height="30" colspan="2" align="center"><div align="left"><strong>email:</strong> <%=user.getEmail()%></div></td>
</tr>
<tr bgcolor="#E9F4F5">
<td height="30" colspan="2" align="center"><div align="left"><strong>邮编:</strong> <%=user.getZipCode()%></div></td>
</tr>
<tr bgcolor="#E9F4F5">
<td height="30" colspan="2" align="center">
<div align="left"><strong>地址:</strong> <%=user.getAddress()%></div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3" height="30"><hr size="5" color="#e6f3ff"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="30" valign="top"></td>
</tr>
<tr>
<td><hr align="left" size="10" noshade color="#318EB7"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -