📄 orderdeal.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.ascenttech.ebookstore.shopcart.*" %>
<html>
<head>
<title>
订单结算
</title>
<link href="css/mycss.css" rel="stylesheet" type="text/css" />
</head>
<body leftmargin=0 topmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
<div class="top"></div>
<div class="main1"></div>
<div class="main2">
<p>
<%
String user = (String) session.getAttribute("username");
ShoppingCart bookmap=(ShoppingCart) session.getAttribute(user);
%>
</p>
<p> </p>
<center>
<form action="orderservlet" method="post">
<br>
<span class="bodyh1"> 订单中心</span><br>
<input type="hidden" name="orderdeal" value="true"/>
<span class="bodytxt">订 单 号:</span>
<input type="text" name="oid" /><br>
<span class="bodytxt">客户姓名:</span>
<input type="text" name="custname" /><br>
<span class="bodytxt">地 址:</span>
<input type="text" name="address" /><br>
<span class="bodytxt">总 价 格:</span>
<input type="text" name="total" value ="<%=bookmap.getTotal()%>"><br>
<input type="submit" name="Submit" value="提交">
<input type="reset" value="重置">
</form>
</center>
<div class="txt">版权所有:亚思晟科技(C)2005-2008</div>
</div>
<div class="main3"></div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -