print.jsp~2~

来自「客户关系管理系统,包括数据库,类,所有运行所需的代码及文件」· JSP~2~ 代码 · 共 40 行

JSP~2~
40
字号
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<%@ page import="com.domain.KhxxForm"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看打印的资料</title>
<style type="text/css">
<!--
body {
	background-color: #FFFFCC;
}
-->
</style></head>

<body>
<%List list=(List)request.getAttribute("form");%>
<div align="center">
  <p>请选择客户信息</p>
  <table width="466" border="3" cellspacing="3" cellpadding="3">
    <tr>
      <td width="77">客户编号</td>
      <td width="148">客户名称</td>
      <td width="199">操作</td>
    </tr>
<%for(int i=0;i<list.size();i++){
KhxxForm form=(KhxxForm)list.get(i)
%>
    <tr>
      <td><%=form.getKhxx_id()%></td>
      <td><%=form.getKhxx_mc()%></td>
      <td><a href="prinfSelect.do?id=<%=form.getKhxx_id()%>">打印客户信封</a></td>
    </tr>
<%}%>
  </table>
  <p>&nbsp;  </p>
</div>
</body>
</html>

⌨️ 快捷键说明

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