cashier.txt
来自「J2EE导学」· 文本 代码 · 共 41 行
TXT
41 行
<%-- Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. This software is the proprietary information of Sun Microsystems, Inc. Use is subject to license terms. --%><%@ taglib uri="/struts-bean" prefix="bean" %><%@ taglib uri="/struts-logic" prefix="logic" %><jsp:useBean id="cart" class="cart.ShoppingCart" scope="session"/><jsp:useBean id="currency" class="util.Currency" scope="application"> <jsp:setProperty name="currency" property="locale" value="<%=request.getLocale()%>"/> <jsp:setProperty name="currency" property="amount" value="<%=cart.getTotal()%>"/></jsp:useBean><p>Your total purchase amount is:<strong><jsp:getProperty name="currency" property="format"/></strong></strong><p>To purchase the items in your shopping cart, please provide us with the following information:<form action="<%=request.getContextPath()%>/receipt" method="post"><table><tr><td><strong>Name:</strong></td><td><input type="text" name="cardname" value="Gwen Canigetit" size="19"></td></tr><tr><td><strong>Credit Card Number:</strong></td><td><input type="text" name="cardnum" value="xxxx xxxx xxxx xxxx" size="19"></td></tr><tr><td></td><td><input type="submit" value="Submit Information"></td></tr></table></form>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?