pet_kind.jsp

来自「这是java编写宠物医院项目」· JSP 代码 · 共 42 行

JSP
42
字号
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
pet_kind
</title>
<meta  http-equiv="content-type" content="text/html; chstset=utf-8" />
<style type="text/css">
<!--
.STYLE1 {color: #0033FF}
.STYLE2 {color: #0099FF}
-->
</style>
</head>
<body bgcolor="#ffffff">
<h1 align="center" class="STYLE1"><span class="STYLE1">宠物的详细信息如下</span>:</h1>
<table width="787"border="0" align="center">
  <tr>
    <td>编号</td>
    <td>所有人</td>
    <td>名称</td>
    <td>种类</td>
    <td>性别</td>
    <td>登记时间</td>
  </tr>
  <c:forEach var="pet" items="${requestScope.pet}">
  <tr>
    <td><span class="STYLE5 STYLE2">${pet.pid}</span></td>
    <td><span class="STYLE5 STYLE2">${pet.hname}</span></td>
    <td><span class="STYLE5 STYLE2">${pet.pname}</span></td>
    <td><span class="STYLE5 STYLE2">${pet.pkind}</span></td>
    <td><span class="STYLE5 STYLE2">${pet.psex}</span></td>
    <td><span class="STYLE5 STYLE2">${pet.ptime}</span></td>
  </tr>
  </c:forEach>
</table>
<br/><br/><br/>
<a href="pet/pet.jsp">返回</a>
</body>
</html>

⌨️ 快捷键说明

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