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

📄 petsearch_result.jsp

📁 宠物医院 JSP项目 我是一个初学者 请大家多多指教
💻 JSP
字号:
<%@page contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<link href="<%=request.getContextPath()%>/css/fund.css" rel="stylesheet" type="text/css"/>
<html>
<head>
<title>petsearch_result</title>
</head>
<body bgcolor="#ffffff">
<%@include file="header.jsp"%>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td class="thd" width="70%" align="center">
      <form method="post" action="<%=request.getContextPath()%>/addpetservlet?action=submit" name="form1">
      <br>
      <br>
      <table border="0" width="60%">
        <tr>
          <td class="tdata" width="50%">宠物名称:</td>
          <td class="tdata" width="50%">所有人名称:</td>
        </tr>
        <c:forEach items="${list}" var="arrylist">
          <tr>
            <td class="tdata" width="50%">
              <a href="<%=request.getContextPath()%>/addpetservlet?action=pid&pid=${arrylist.pid}">${arrylist.pname}              </a>
            </td>
            <td class="tdata" width="50%">
              <a href="<%=request.getContextPath()%>/addpetservlet?action=oid&oid=${arrylist.oid}">${arrylist.oname}              </a>
            </td>
          </tr>
        </c:forEach>
        <tr>
          <td colspan="2" align="center">
            <input class="btnaction" type="submit" name="Submit" value="重新查询">
          </td>
        </tr>
      </table>
      </form>
    </td>
  </tr>
</table>
<%@include file="foot.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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