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

📄 ckdlb.jsp

📁 很好的东东 本人随便做的 仅供学习之用
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>

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

	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
  <center>
  <h1>出货单列表</h1>
  
  <h5 align="left"  >&nbsp;&nbsp;&nbsp;
        登陆仓库:<bean:write name="ware"/> &nbsp;&nbsp;&nbsp;&nbsp;用户:<bean:write name="name" /> 
   
  </h5>
  
   <hr/>
   
   <table width="80%" border="1">
    <tr>
      <td>出货单号</td>
      <td>订单号</td>
      <td>收货人</td>
  
      <td>操作</td>
    </tr>
    
    <logic:present name="ckchdlist">
      <logic:iterate id="list" name="ckchdlist">
        <tr>
          <td><bean:write name="list" property="ID"/></td>
         <td><bean:write name="list" property="orderID"/></td>
         <td><bean:write name="list" property="consignee"/></td>
         <td align="center">
               <a href="orderAction.do?id=<bean:write name='list' property='orderID'/>&sendID=<bean:write name='list' property='ID'/>">查看</a>&nbsp;


         </td>
        </tr>
      </logic:iterate>
    </logic:present>

  </table>
 
  </center>
  </body>
</html:html>

⌨️ 快捷键说明

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