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

📄 customerinformationlist.jsp

📁 java开发购物车+网上书城
💻 JSP
字号:
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.sql.*" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<style>
<!--
.wr{font-size: 12pt; line-height: 22px}
.wr1 {	FONT-SIZE: 12px; LINE-HEIGHT: 200%}
.wr2 {	FONT-SIZE: 14px; LINE-HEIGHT: 200%}
.wr3 {	FONT-SIZE: 12px}
.wr4 {	FONT-SIZE: 12px; LINE-HEIGHT: 150%}
// -->
</style>
<title>清韵网上书店后台管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFDB" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form action="${pageContext.request.contextPath }/search.do" method="post">
<table width="650" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td width="50">&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr> 
    <td width="50">&nbsp;</td>
    <td class="wr4"> 
      <div align="center"><b>客户信息列表</b></div>
    </td>
  </tr>
  <tr> 
    <td width="50">&nbsp;</td>
    <td class="wr4">共 <font color="#FF0000">${requestScope.count }</font> 个客户<br>
      <input type="text" name="id">
      <input type="submit" name="search" value="查找">
    </td>
  </tr>
  <tr> 
    <td width="50">&nbsp;</td>
    <td>
      <table width="600" border="0" cellspacing="1" cellpadding="3" bgcolor="#000000">
        <tr bgcolor="#FFFFDB" align="center"> 
          <td class="wr4" width="35">序号</td>
          <td class="wr4" width="98">用户名</td>
          <td class="wr4" width="184">性别</td>
          <td class="wr4" width="184">联系方式</td>
          <td class="wr4" width="184">邮政编码</td>
          <td class="wr4" width="86" align="center">查看</td>
          <td class="wr4" width="77" align="center">删除</td>
        </tr>
        <c:forEach items="${requestScope.user}" var="info">
        <tr bgcolor="#FFFFDB" align="center"> 
          <td class="wr4" width="35">${info.userId }</td>
          <td class="wr4" width="98">${info.userName }</td>
          <c:choose>
          	<c:when test="${info.userSex==1}"><td class="wr4" width="98">男</td></c:when>
          	<c:otherwise><td class="wr4" width="98">女</td></c:otherwise>
          </c:choose>
          <td class="wr4" width="98">${info.userTel }</td>
          <td class="wr4" width="98">${info.userPost }</td>
          <td class="wr4" width="86" align="center"><a href="${pageContext.request.contextPath }/findCur.do?id=${info.userId }">查看</a></td>
          <td class="wr4" width="77" align="center"><a href="${pageContext.request.contextPath }/delCur.do?id=${info.userId }">删除</a></td>
        </tr>
        </c:forEach>
        <tr bgcolor="#FFFFDB"> 
          <td class="wr4" colspan="7"> 
            <div align="right">01 02 03 04 05 06 07 08 09 10 &gt;&gt;&gt;</div>
          </td>
        </tr>
      </table>
</td>
  </tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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