📄 petcustomerok.jsp~5~
字号:
<%@ page contentType="text/html; charset=GB2312" import="com.pet.pets.model.DAO.impl.Petimpl,com.pet.pets.model.DAO.PetDao;" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
petcustomerok
</title>
</head>
<jsp:useBean id="petBean" scope="session" class="com.pet.pets.model.DTO.PetBean" />
<body bgcolor="#ffffff">
<h4 align="center">
恭喜您登记宠物成功!您的宠物信息如下!
</h4>
<table width="100%" border="0" align="center">
<tr>
<td width="39%"> </td>
<td width="22%"> </td>
<td width="39%"> </td>
</tr>
<tr>
<td> </td>
<td>宠物名字:${petBean.pname}</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>宠物性别:<c:choose><c:when test="${petBean.psex==0}">雄性</c:when><c:otherwise>雌性</c:otherwise></c:choose> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>宠物类型:<%PetDao petdao = new Petimpl();%><%=petdao.gettype(petBean.getPUID())%></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>宠物年龄:${petBean.page}</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>宠物描述:${petBean.premark}</td>
<td> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -