statresult.jsp

来自「用struts框架做的车辆租赁管理系统」· JSP 代码 · 共 45 行

JSP
45
字号
<%@ page language="java" pageEncoding="utf-8"%>
<%@ include file="head.jsp"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <html:base />
    
    <title>listcar.jsp</title>


  </head>
  
  <body>
  <table width="671" height="352" border="1" align="center" cellpadding="0" cellspacing="0">
    <tr >
      <td width="667" height="350" background="image/bank.jpg" bgcolor="#A7BFDB"><table width="555" height="60" border="1" align="center" cellspacing="0" bordercolor="#333333">
          <tr bordercolor="#000000">
            <td width="259" height="29"><div align="center">车辆类别</div></td>
            <td width="286" height="29"><div align="center">租金</div></td>
          </tr>
          <logic:iterate id="car" name="stat">
            <tr>
              <td height="29"><div align="center">
                  <bean:write name="car" property="category" />
              </div></td>
              <td><div align="center">
                  <bean:write name="car" property="price" />
              </div></td>
            </tr>
          </logic:iterate>
      </table>
      </td>
    </tr>
  </table>
  <p>&nbsp;</p>
  </body>
  <%@ include file="end.jsp"%>
</html:html>

⌨️ 快捷键说明

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