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

📄 balancelist.jsp

📁 仓库管理系统,适合各种行业的仓库管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*,com.bean.DTO.*" errorPage="" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link  href="../css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<link  href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
<!--
.STYLE1 {color: #9999FF}
-->
</style>
</head>

<body>
<table width="1010" border="0" height="21" bgcolor="#6495ED"cellpadding="0" cellspacing="0" >
  <tr>
<td width="15%"  ><font class="title1 STYLE1">              预 留 款 信 息</font></td>
  </tr>
</table>
<form id="form1" name="form1" method="post" action="">
  <table width="93%"  border="0" align="center" cellpadding="1" cellspacing="1">
   
    
    <tr bgcolor="#99CCCC" height="25" >
      <td width="34%"  class="smalltitle">部门ID</td>
      <td width="33%"  class="smalltitle">部门名称</td>
      <td width="33%" class="smalltitle">预留款</td>
    </tr>
    <c:forEach var = "dto" items="${list}">
      <tr height="25">
        <td  class="STYLE18">${dto.depID }</td>
        <td  class="STYLE18">${dto.depname }</td>
        <td  class="STYLE18">${dto.balance }</td>
      </tr>
    </c:forEach>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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