?? orderlist.jsp
字號:
<%@page contentType="text/html;charset=gbk"%><%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%><html> <head> <title>定單列表</title> </head> <body background="/ShoppingCar/imager/2.jpg"> <center> <h1> 定單列表 </h1> <hr> <table border="1" bordercolor="red" width="%66"> <tr> <th align="center"> 定單號 </th> <th align="center"> 定單金額 </th> </tr> <c:forEach items="${orders}" var="order"> <tr> <td align="center"> ${order.oid } </td> <td align="center"> ${order.cost } </td> </tr> </c:forEach> <c:if test="${empty orders}"> <tr> <td align="center" colspan="3"> 您沒有任何定單 </td> </tr> </c:if> </table><br> <input type="button" onclick="javascript:history.back()" value="返回"> </center> </body></html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -