📄 order.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.util.*" errorPage="" %>
<jsp:directive.page import="com.eshop.daoImpl.MemberDaoImpl"/>
<jsp:directive.page import="com.eshop.dto.Member"/>
<jsp:directive.page import="com.eshop.daoImpl.OrderDaoImpl"/>
<jsp:directive.page import="com.eshop.dto.Order;"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style type="text/css">
<!--
.STYLE3 {font-family: "Times New Roman", Times, serif; font-size: 12px; }
.STYLE4 {
font-family: "Times New Roman", Times, serif;
font-size: 18px;
font-weight: bold;
}
.STYLE6 {font-family: "Times New Roman", Times, serif; font-size: 14px; }
-->
</style>
</head>
<body>
<%
String userName = request.getParameter("userName");
MemberDaoImpl mdi = new MemberDaoImpl();
Member m = new Member();
m = mdi.FindbyUserName(userName);
%>
<p align="center" class="STYLE4"> 用户信息</p>
<table width="243" height="198" border="0" align="center" cellspacing="1">
<tr>
<td width="58"><span class="STYLE6">用户名</span></td>
<td width="133"><span class="STYLE6"><%=m.getUserName() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">真是姓名</span></td>
<td><span class="STYLE6"><%=m.getTrueName() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">地址</span></td>
<td><span class="STYLE6"><%=m.getAddress() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">邮政编码</span></td>
<td><span class="STYLE6"><%=m.getPostcode() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">电话号码</span></td>
<td><span class="STYLE6"><%=m.getTel() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">E-mail</span></td>
<td><span class="STYLE6"><%=m.getEmail() %></span></td>
</tr>
<tr>
<td><span class="STYLE6">帐户余额</span></td>
<td><span class="STYLE6"><%=m.getMoney() %></span></td>
</tr>
<tr>
<td colspan="2"><div align="center" class="STYLE3"><a href="order_list.jsp">返回</a></div></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -