📄 deliveryway.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ page import= "com.set.appframe.data.GenericValueObject" %>
<%@ page import= "com.set.utils.WebUtils" %>
<%
String totalprice="";
if(request.getAttribute("totalprice")!=null){
totalprice=(String)request.getParameter("totalprice");
}
String bgmessage="";
if(request.getAttribute("false")!=null){
bgmessage="您没有购买任何商品,不能生成订单!";
}
%>
<html>
<head>
<title>我要下订单</title>
<LINK href="../css/ie_global.css" type=text/css rel=stylesheet>
<link href="../css/ie_navigation.css" type=text/css rel=stylesheet>
<style type="text/css">
<!--
.style2 {
font-size: large;
font-weight: bold;
}
-->
</style>
</head>
<script type="text/javascript">
function onInit(){
document.all("TOTALPRICE").value="<%=totalprice%>";
}
function back(){
document.location.href="/shopping/ShoppingAction.do?dispatch=search&key=balance";
}
</script>
<body onLoad="onInit()">
<form action="/order/OrderAction.do" method=post name="page">
<input type=hidden name="dispatch" value="create">
<input type=hidden name="TOTALPRICE" >
<div align="center">
<font size="4"><span class="style2">请选择送货方式</span></font> </div>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr bgcolor="#CCCCCC">
<td width="10%" height="30" align="center"><span class="style1">送货方式</span></td>
<td width="15%" >
<select name="DELIVERYWAY">
<option value="送货上门">送货上门</option>
<option value="邮寄">邮寄</option>
<option value="快递">快递</option>
</select>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30" colspan="2" align="center" valign=bottom>
<input type=button class=button value=" 上一步 " onclick="back()">
<input type=submit class=button value=" 下一步 " > <p>
<font color=red><%=bgmessage %></font>
</td>
</tr>
</table>
</form>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -