📄 adminorder.jsp
字号:
<%-- Document : userorder Created on : 2008-12-5, 14:16:23 Author : 隆科--%><%@page contentType="text/html" pageEncoding="UTF-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="1.css" type="text/css" rel="stylesheet"> <title>订单详情</title> </head> <body> <center> <div id="container"> <div id="banner"> <%@include file="/admin/adminhead.jsp"%> </div> <div> </div> <div id="content"> <hr> <c:forEach var="order" items="${allorderlist}"> <table border="0" width="650px" class="table"> <tr> <td> 订单号:${order.orderId} </td> <td>收货人:${order.postName}</td> <td>下单时间:${order.orderDate}</td> </tr> <tr> <td colspan="2"> 邮寄地址:${order.postAdress} </td> <td>邮编:${order.postNumber}</td> </tr> <tr> <td colspan="2">联系方式:${order.postTel}</td> <td>订单状态:${order.status}</td> </tr> <tr><td colspan="2"><a href="/eBook/AdminOrderServlet?action=orderinfo&orderid=${order.orderId}">订单详情</a></td><td><a href="/eBook/AdminOrderServlet?action=handorder&orderid=${order.orderId}">处理该订单</a></td></tr> </table> <br/> </c:forEach> <table width="650" border="0" class="table"> <tr><td> <a>共${allpages}页</a><a>第${currentpage}页</a> <c:forEach begin="1" var="num" end="${allpages}"> <a href="/eBook/AdminOrderServlet?action=showorder&cpage=${num}"> 第${num}页</a> </c:forEach> </td></tr> </table> </div> <div id="footer"><%@include file="../foot.jsp" %></div></div> </center> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -