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

📄 seebespoke.jsp~7~

📁 JBuilder 2006 +SQL Server2000 +JavaBean+JSP开发的宠物医院管理系统
💻 JSP~7~
字号:
<%@page contentType="text/html; charset=GB2312"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib prefix="page" uri="/WEB-INF/pageTag.tld"%>
<html>
<head>
<title>seebespoke</title>
</head>
<body bgcolor="#ffffff">
<h2 align="center">我的预约单</h2>
<form method="post" action="seebespoke.jsp" name="form1">
<page:pagetag>
  <table align="center" width="80%">
    <tr>
      <th>宠物名字</th>
      <th>宠物年龄</th>
      <th>宠物性别</th>
      <th>宠物类别</th>
      <th>宠物主人</th>
      <th>联系电话</th>
      <th>主人地址</th>
      <td>预约时间</td>
      <th>宠物症状</th>
    </tr>
    <c:forEach items="${allb}" var="bes">
      <tr>
        <td>${bes.pname}        </td>
        <td>${bes.page}        </td>
        <td>
          <c:choose>
            <c:when test="${bes.psex==0}">雄性</c:when>
            <c:when test="${bes.psex==1}">雌性</c:when>
          </c:choose>
        </td>
        <td>${bes.tname}        </td>
        <td>${bes.uname}        </td>
        <td>${bes.uphone}        </td>
        <td>${bes.uaddress}        </td>
        <td>${bes.btime}        </td>
        <td>${bes.bsymptom}        </td>
      </tr>
    </c:forEach>
  </table>
</page:pagetag>
</form>
</body>
</html>

⌨️ 快捷键说明

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