⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 order.jsp

📁 《精通JSP编程 》源代码(赵强那本) 很有用的源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html>
<head>
<title><bean:message key="tilte.myCart"/></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<tiles:insert page="/banner.jsp" flush="false" />
<body>
<div align="center">
<html:form action="orderAction">
<table width="800" border="1">
  <tr>
    <td width="129"><div align="center"><bean:message key="prompt.ISBN"/></div></td>
    <td width="162"><div align="center"><bean:message key="prompt.name"/></div></td>
    <td width="162"><div align="center"><bean:message key="prompt.author"/></div></td>
    <td width="216"><div align="center"><bean:message key="prompt.price"/></div></td>
  </tr>
  <logic:iterate id="bookList" name="orderActionForm" property="bookList" type="edu.jnestore.util.SelectedBook">
  <tr>
    <td width="129"><div align="center"><bean:write name="bookList" property="isbnid"/></div></td>
    <td width="162"><div align="center"><bean:write name="bookList" property="name"/></div></td>
    <td width="162"><div align="center"><bean:write name="bookList" property="author"/></div></td>
    <td width="216"><div align="center"><bean:write name="bookList" property="price"/></div></td>
    </td>
  </tr>
  </logic:iterate>
</table>
<p align="center">
<bean:message key="prompt.totalPrice"/>
<bean:write name="orderActionForm" property="totalPrice"/>
<html:submit property="action"><bean:message key="button.save"/></html:submit>
</p>
</html:form>
</div>
</body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -